osb/database/migrations/2017_06_18_104531_create_currencies_table.php
2018-06-18 21:18:34 +10:00

37 lines
590 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateCurrenciesTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('currencies', function(Blueprint $table)
{
$table->increments('id');
$table->string('name', 191);
$table->string('symbol', 2)->nullable();
$table->string('threecode', 3);
$table->boolean('active');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('currencies');
}
}