summaryrefslogtreecommitdiff
path: root/db/migrate/20191003064615_create_aws_roles.rb
blob: 960e9b280530d315f053f577d705a946afe059c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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

  # rubocop:disable Migration/PreventStrings
  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
  # rubocop:enable Migration/PreventStrings
end