Ditched parent ID - extraneous feature, not really needed

This commit is contained in:
snipe
2013-11-25 10:11:40 -05:00
parent 1a970716cc
commit 447a74928b
@@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
class DropParentFromCategories extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('categories', function($table)
{
$table->dropColumn('parent');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}