From cb4f1daac18433b55f9f05f61bc3777811c2104c Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 22 Mar 2018 13:45:55 -0700 Subject: [PATCH] Fix for a bad merge - the migration was changed between master and develop :( --- ...018_03_01_173800_add_custom_logout_url.php | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 database/migrations/2018_03_01_173800_add_custom_logout_url.php diff --git a/database/migrations/2018_03_01_173800_add_custom_logout_url.php b/database/migrations/2018_03_01_173800_add_custom_logout_url.php deleted file mode 100644 index 67de6f3ff..000000000 --- a/database/migrations/2018_03_01_173800_add_custom_logout_url.php +++ /dev/null @@ -1,32 +0,0 @@ -string('login_remote_user_custom_logout_url')->default(""); - }); - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('settings', function (Blueprint $table) { - $table->dropColumn('login_remote_user_custom_logout_url'); - }); - } -}