debian-mirror-gitlab/db/migrate/20170720122741_create_user_custom_attributes.rb

18 lines
473 B
Ruby
Raw Normal View History

2018-12-23 12:14:25 +05:30
class CreateUserCustomAttributes < ActiveRecord::Migration[4.2]
2018-03-17 18:26:18 +05:30
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