From 9db557a6d3f1d7af1659cac7f32d3b02ea81d06c Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Tue, 4 Feb 2020 18:02:06 +0200 Subject: [PATCH] =?UTF-8?q?DP-153=20Microsoft=20SQL=20Server=20cannot=20be?= =?UTF-8?q?=20used=20for=20system=20database=20=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix migrations rollback --- .../2017_10_02_182258_add_namespace_field_to_gitlab_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2017_10_02_182258_add_namespace_field_to_gitlab_config.php b/database/migrations/2017_10_02_182258_add_namespace_field_to_gitlab_config.php index 4c44dff..a708ebf 100644 --- a/database/migrations/2017_10_02_182258_add_namespace_field_to_gitlab_config.php +++ b/database/migrations/2017_10_02_182258_add_namespace_field_to_gitlab_config.php @@ -28,7 +28,7 @@ public function up() public function down() { if (Schema::hasTable('gitlab_config') && Schema::hasColumn('gitlab_config', 'namespace')) { - Schema::table('script_config', function (Blueprint $t){ + Schema::table('gitlab_config', function (Blueprint $t){ $t->dropColumn('namespace'); }); }