Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20230126133531_remove_not_null_constraints_for_tables_with_schema_differences_v3.rb')
-rw-r--r--db/post_migrate/20230126133531_remove_not_null_constraints_for_tables_with_schema_differences_v3.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/db/post_migrate/20230126133531_remove_not_null_constraints_for_tables_with_schema_differences_v3.rb b/db/post_migrate/20230126133531_remove_not_null_constraints_for_tables_with_schema_differences_v3.rb
deleted file mode 100644
index 04ed7a7ee12..00000000000
--- a/db/post_migrate/20230126133531_remove_not_null_constraints_for_tables_with_schema_differences_v3.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveNotNullConstraintsForTablesWithSchemaDifferencesV3 < Gitlab::Database::Migration[2.1]
- disable_ddl_transaction!
-
- def up
- return unless Gitlab.com?
-
- change_column_null :integrations, :updated_at, true
- change_column_null :integrations, :created_at, true
-
- change_column_null :project_settings, :show_default_award_emojis, true
- end
-
- def down
- # no-op
- end
-end