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/migrate/20201126165919_add_epic_boards.rb')
-rw-r--r--db/migrate/20201126165919_add_epic_boards.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/db/migrate/20201126165919_add_epic_boards.rb b/db/migrate/20201126165919_add_epic_boards.rb
deleted file mode 100644
index 432b839d6ea..00000000000
--- a/db/migrate/20201126165919_add_epic_boards.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-# frozen_string_literal: true
-
-class AddEpicBoards < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- with_lock_retries do
- create_table :boards_epic_boards do |t|
- t.boolean :hide_backlog_list, default: false, null: false
- t.boolean :hide_closed_list, default: false, null: false
- t.references :group, index: true, foreign_key: { to_table: :namespaces, on_delete: :cascade }, null: false
- t.timestamps_with_timezone
- t.text :name, default: 'Development', null: false
- end
- end
-
- add_text_limit :boards_epic_boards, :name, 255
- end
-
- def down
- with_lock_retries do
- drop_table :boards_epic_boards
- end
- end
-end