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/20200604145731_create_board_user_preferences.rb')
-rw-r--r--db/migrate/20200604145731_create_board_user_preferences.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/db/migrate/20200604145731_create_board_user_preferences.rb b/db/migrate/20200604145731_create_board_user_preferences.rb
deleted file mode 100644
index e83f467d690..00000000000
--- a/db/migrate/20200604145731_create_board_user_preferences.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# frozen_string_literal: true
-
-class CreateBoardUserPreferences < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- create_table :board_user_preferences do |t|
- t.bigint :user_id, null: false, index: true
- t.bigint :board_id, null: false, index: true
- t.boolean :hide_labels
- t.timestamps_with_timezone null: false
- end
-
- add_index :board_user_preferences, [:user_id, :board_id], unique: true
- end
-
- def down
- drop_table :board_user_preferences
- end
-end