summaryrefslogtreecommitdiff
path: root/db/migrate/20210823172643_create_user_group_callout.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210823172643_create_user_group_callout.rb')
-rw-r--r--db/migrate/20210823172643_create_user_group_callout.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20210823172643_create_user_group_callout.rb b/db/migrate/20210823172643_create_user_group_callout.rb
deleted file mode 100644
index 72341c0b275..00000000000
--- a/db/migrate/20210823172643_create_user_group_callout.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-class CreateUserGroupCallout < ActiveRecord::Migration[6.1]
- def up
- create_table :user_group_callouts do |t|
- t.bigint :user_id, null: false
- t.bigint :group_id, null: false
- t.integer :feature_name, limit: 2, null: false
- t.datetime_with_timezone :dismissed_at
-
- t.index :group_id
- t.index [:user_id, :feature_name, :group_id], unique: true, name: 'index_group_user_callouts_feature'
- end
- end
-
- def down
- drop_table :user_group_callouts
- end
-end