Removed location_id from assets table

Going to handle this via the people it's checked out to instead
This commit is contained in:
snipe
2013-11-18 10:33:35 -05:00
parent 4ef506cde7
commit abac6489c4
@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
class RemoveLocationIdFromAsset extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('assets', function($table)
{
$table->dropColumn('location_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('assets', function($table)
{
$table->integer('location_id');
});
}
}