Files
danbooru/db/migrate/20160526174848_add_approver_id.rb
2016-05-26 13:01:44 -07:00

8 lines
239 B
Ruby

class AddApproverId < ActiveRecord::Migration
def change
add_column :bulk_update_requests, :approver_id, :integer
add_column :tag_aliases, :approver_id, :integer
add_column :tag_implications, :approver_id, :integer
end
end