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 67de6f3ff1..0000000000 --- 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'); - }); - } -}