id(); $table->boolean('active')->default(false); $table->string('iso', 3)->unique(); $table->string('name', 191)->unique(); $table->text('notes')->nullable(); $table->text('rates')->nullable(); $table->string('symbol', 2); $table->smallInteger('rounding'); $table->unique(['id','iso']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('currencies'); } };