debian-mirror-gitlab/db/migrate/20191105134413_create_service_desk_settings.rb
2020-05-24 23:13:21 +05:30

21 lines
561 B
Ruby

# frozen_string_literal: true
class CreateServiceDeskSettings < ActiveRecord::Migration[5.2]
DOWNTIME = false
# rubocop:disable Migration/PreventStrings
def change
create_table :service_desk_settings, id: false do |t|
t.references :project,
primary_key: true,
default: nil,
null: false,
index: false,
foreign_key: { on_delete: :cascade }
t.string :issue_template_key, limit: 255
end
end
# rubocop:enable Migration/PreventStrings
end