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'); + }); + } + +}