Add migrations for existing database
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<?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');
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user