Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200227165129_create_user_details.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe9f23fcb21553490f68a30ee2253fbaeb17e5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class CreateUserDetails < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      create_table :user_details, id: false do |t|
        t.references :user, index: false, foreign_key: { on_delete: :cascade }, null: false, primary_key: true
        t.string :job_title, limit: 200, default: "", null: false
      end
    end

    add_index :user_details, :user_id, unique: true
  end

  def down
    with_lock_retries do
      drop_table :user_details
    end
  end
end