summaryrefslogtreecommitdiff
path: root/db/migrate/20190613073003_create_project_aliases.rb
blob: 896d3ca5813873e028a4e1af31edb1a02e029ca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class CreateProjectAliases < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :project_aliases do |t|
      t.references :project, null: false, index: true, foreign_key: { on_delete: :cascade }, type: :integer
      t.string :name, null: false, index: { unique: true } # rubocop:disable Migration/AddLimitToStringColumns

      t.timestamps_with_timezone null: false
    end
  end
end