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

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

class CreateOrganizationUsers < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def up
    create_table :organization_users do |t|
      t.bigint :organization_id,
        null: false
      t.bigint :user_id,
        null: false,
        index: true
      t.timestamps_with_timezone null: false
      t.index 'organization_id, user_id',
        name: 'index_organization_users_on_organization_id_and_user_id', unique: true
    end
  end

  def down
    drop_table :organization_users
  end
end