2019-06-13 03:37:35 -04:00
|
|
|
# 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
|
2020-04-21 11:21:10 -04:00
|
|
|
t.string :name, null: false, index: { unique: true } # rubocop:disable Migration/PreventStrings
|
2019-06-13 03:37:35 -04:00
|
|
|
|
|
|
|
t.timestamps_with_timezone null: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|