DB migration for #112

This commit is contained in:
snipe
2013-12-10 03:48:20 -05:00
parent 8ac394bd3f
commit da9f28fbe7
@@ -0,0 +1,34 @@
<?php
use Illuminate\Database\Migrations\Migration;
class AddEolOnModelsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('models', function($table)
{
$table->integer('eol')->nullable()->default(NULL);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('models', function($table)
{
$table->dropColumn('old');
});
}
}