summaryrefslogtreecommitdiff
path: root/db/migrate/20180125214301_create_callouts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20180125214301_create_callouts.rb')
-rw-r--r--db/migrate/20180125214301_create_callouts.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20180125214301_create_callouts.rb b/db/migrate/20180125214301_create_callouts.rb
new file mode 100644
index 00000000000..5dc9638a845
--- /dev/null
+++ b/db/migrate/20180125214301_create_callouts.rb
@@ -0,0 +1,19 @@
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class CreateCallouts < ActiveRecord::Migration
+ # Set this constant to true if this migration requires downtime.
+ DOWNTIME = false
+
+ def change
+ create_table :callouts do |t|
+ t.string :feature_name, null: false
+ t.boolean :dismissed_state, null: false
+ t.references :user, index: true, foreign_key: { on_delete: :cascade }, null: false
+
+ t.timestamps_with_timezone null: false
+ end
+
+ add_index :callouts, :feature_name, unique: true
+ end
+end