summaryrefslogtreecommitdiff
path: root/db/migrate/20170720122741_create_user_custom_attributes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170720122741_create_user_custom_attributes.rb')
-rw-r--r--db/migrate/20170720122741_create_user_custom_attributes.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20170720122741_create_user_custom_attributes.rb b/db/migrate/20170720122741_create_user_custom_attributes.rb
new file mode 100644
index 00000000000..b1c0bebc633
--- /dev/null
+++ b/db/migrate/20170720122741_create_user_custom_attributes.rb
@@ -0,0 +1,17 @@
+class CreateUserCustomAttributes < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def change
+ create_table :user_custom_attributes do |t|
+ t.timestamps_with_timezone null: false
+ t.references :user, null: false, foreign_key: { on_delete: :cascade }
+ t.string :key, null: false
+ t.string :value, null: false
+
+ t.index [:user_id, :key], unique: true
+ t.index [:key, :value]
+ end
+ end
+end