integer('id',TRUE); $table->string('name', 128)->nullable()->unique('name_UNIQUE'); $table->string('description', 128)->nullable(); $table->string('notes', 128)->nullable(); $table->string('two_code', 16)->nullable()->unique('two_code_UNIQUE'); $table->string('three_code', 16)->nullable()->unique('three_code_UNIQUE'); $table->boolean('active')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('country'); } }