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