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

10 lines
197 B
Ruby
Raw Normal View History

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