gitlab-org--gitlab-foss/db/migrate/20170314082049_create_syste...

25 lines
526 B
Ruby
Raw Normal View History

# rubocop:disable Migration/Timestamps
class CreateSystemNoteMetadata < ActiveRecord::Migration[4.2]
2017-03-15 13:18:44 +00:00
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
2017-03-15 13:18:44 +00:00
create_table :system_note_metadata do |t|
t.references :note, null: false
t.integer :commit_count
t.string :action
2017-03-15 13:18:44 +00:00
t.timestamps null: false
end
add_concurrent_foreign_key :system_note_metadata, :notes, column: :note_id
end
def down
drop_table :system_note_metadata
2017-03-15 13:18:44 +00:00
end
end