Files
danbooru/db/migrate/20160526174848_add_approver_id.rb

8 lines
244 B
Ruby

class AddApproverId < ActiveRecord::Migration[4.2]
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