discourse/db/migrate/20120803191426_add_admin_flag_to_users.rb
Sam Saffron cd3254e170 DEV: remove legacy code
This code is a no-op on all sites, even though it looks rather dangerous
this migration has long run prior to people trying exploit it.

That said ... hygiene here ... is not good.

Remove this legacy, we do not want it, even in historical migrations.
2020-10-08 10:53:07 +08:00

9 lines
253 B
Ruby

# frozen_string_literal: true
class AddAdminFlagToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :admin, :boolean, default: false, null: false
add_column :users, :moderator, :boolean, default: false, null: false
end
end