From 447a74928bad562ec67d8df0113f39151db5ae84 Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 25 Nov 2013 10:11:40 -0500 Subject: [PATCH] Ditched parent ID - extraneous feature, not really needed --- ..._25_150450_drop_parent_from_categories.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 app/database/migrations/2013_11_25_150450_drop_parent_from_categories.php diff --git a/app/database/migrations/2013_11_25_150450_drop_parent_from_categories.php b/app/database/migrations/2013_11_25_150450_drop_parent_from_categories.php new file mode 100644 index 0000000000..be8d754a8d --- /dev/null +++ b/app/database/migrations/2013_11_25_150450_drop_parent_from_categories.php @@ -0,0 +1,30 @@ +dropColumn('parent'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } + +} \ No newline at end of file