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

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

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class CreateAwsRoles < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    create_table :aws_roles, id: false do |t|
      t.references :user, primary_key: true, default: nil, type: :integer, index: { unique: true }, foreign_key: { on_delete: :cascade }

      t.timestamps_with_timezone null: false

      t.string :role_arn, null: false, limit: 2048
      t.string :role_external_id, null: false, limit: 64

      t.index :role_external_id, unique: true
    end
  end
end