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/20230626070723_drop_unused_sent_notification_columns.rb')
-rw-r--r--db/post_migrate/20230626070723_drop_unused_sent_notification_columns.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/post_migrate/20230626070723_drop_unused_sent_notification_columns.rb b/db/post_migrate/20230626070723_drop_unused_sent_notification_columns.rb
new file mode 100644
index 00000000000..82a125c1ff5
--- /dev/null
+++ b/db/post_migrate/20230626070723_drop_unused_sent_notification_columns.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+class DropUnusedSentNotificationColumns < Gitlab::Database::Migration[2.1]
+ enable_lock_retries!
+
+ def up
+ remove_column :sent_notifications, :line_code
+ remove_column :sent_notifications, :note_type
+ remove_column :sent_notifications, :position
+ end
+
+ def down
+ add_column :sent_notifications, :line_code, :string
+ add_column :sent_notifications, :note_type, :string
+ add_column :sent_notifications, :position, :text
+ end
+end