From 596d56ebb5504021f7d4217607b41301b5fc3273 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 16 Apr 2018 21:39:00 +0300 Subject: [PATCH] Support custom domains --- .../2018_04_16_142434_add_custom_domain.php | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 database/migrations/2018_04_16_142434_add_custom_domain.php diff --git a/database/migrations/2018_04_16_142434_add_custom_domain.php b/database/migrations/2018_04_16_142434_add_custom_domain.php new file mode 100644 index 000000000000..289c096fc740 --- /dev/null +++ b/database/migrations/2018_04_16_142434_add_custom_domain.php @@ -0,0 +1,30 @@ +boolean('is_custom_domain')->default(false); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}