debian-mirror-gitlab/db/migrate/20170905112933_add_resolved_by_push_to_notes.rb

10 lines
202 B
Ruby
Raw Normal View History

2018-12-23 12:14:25 +05:30
class AddResolvedByPushToNotes < ActiveRecord::Migration[4.2]
2018-03-17 18:26:18 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :notes, :resolved_by_push, :boolean
end
end