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/20200731090553_create_experiment_user.rb')
-rw-r--r--db/migrate/20200731090553_create_experiment_user.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/db/migrate/20200731090553_create_experiment_user.rb b/db/migrate/20200731090553_create_experiment_user.rb
deleted file mode 100644
index 9080429dfd3..00000000000
--- a/db/migrate/20200731090553_create_experiment_user.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-class CreateExperimentUser < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- create_table :experiment_users do |t|
- t.bigint :experiment_id, null: false
- t.bigint :user_id, null: false
- t.integer :group_type, limit: 2, null: false, default: 0
- t.timestamps_with_timezone null: false
- end
-
- add_index :experiment_users, :experiment_id
- add_index :experiment_users, :user_id
- end
-
- def down
- drop_table :experiment_users
- end
-end