From f154692dad9feced73ace975c59ed6ecb45f2179 Mon Sep 17 00:00:00 2001 From: madd15 Date: Fri, 24 Jul 2015 10:20:50 +0930 Subject: [PATCH] Add Checkin_email to Catergories Table --- ...45_add_checkin_email_to_category_table.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 app/database/migrations/2015_07_24_093845_add_checkin_email_to_category_table.php diff --git a/app/database/migrations/2015_07_24_093845_add_checkin_email_to_category_table.php b/app/database/migrations/2015_07_24_093845_add_checkin_email_to_category_table.php new file mode 100644 index 0000000000..a2009e4dea --- /dev/null +++ b/app/database/migrations/2015_07_24_093845_add_checkin_email_to_category_table.php @@ -0,0 +1,32 @@ +boolean('checkin_email')->default(0); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('categories', function ($table) { + $table->dropColumn('checkin_email'); + }); + } + +}