engine = 'InnoDB';
$table->integer('id', true);
$table->string('code', 192);
$table->string('name', 192);
$table->string('symbol', 192);
$table->timestamps(6);
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('currencies');
}
}