Added license name

This commit is contained in:
snipe
2013-11-15 15:47:47 -05:00
parent abd060679e
commit f27fa40f1c
@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
class AddLicenseNameToLicenses extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('licenses', function($table)
{
$table->string('license_name');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}