2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CreateReleasesLinkTable < ActiveRecord::Migration[5.0]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2019-12-04 20:38:33 +05:30
|
|
|
# rubocop:disable Migration/AddLimitToStringColumns
|
2019-02-15 15:39:39 +05:30
|
|
|
create_table :release_links, id: :bigserial do |t|
|
|
|
|
t.references :release, null: false, index: false, foreign_key: { on_delete: :cascade }
|
|
|
|
t.string :url, null: false
|
|
|
|
t.string :name, null: false
|
|
|
|
t.timestamps_with_timezone null: false
|
|
|
|
|
|
|
|
t.index [:release_id, :url], unique: true
|
|
|
|
t.index [:release_id, :name], unique: true
|
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
# rubocop:enable Migration/AddLimitToStringColumns
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
end
|