From f75583871cd340917740410d13aab2ed20b82669 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 15 May 2018 15:44:25 +0300 Subject: [PATCH] Add migration --- .../2018_05_14_091806_limit_notifications.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2018_05_14_091806_limit_notifications.php diff --git a/database/migrations/2018_05_14_091806_limit_notifications.php b/database/migrations/2018_05_14_091806_limit_notifications.php new file mode 100644 index 000000000000..3aa39bf0368d --- /dev/null +++ b/database/migrations/2018_05_14_091806_limit_notifications.php @@ -0,0 +1,30 @@ +boolean('only_notify_owned')->nullable()->default(false); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}