impress/db/migrate/20231111232015_remove_image_mode_tester_from_users.rb
Matchu 644a6acc72 Remove old Image Mode stuff
There was a static page explaining it, which we no longer link to; and
there was an unused field in the User model for who was a beta tester
for it. Goodbye!
2023-11-11 15:21:49 -08:00

5 lines
175 B
Ruby

class RemoveImageModeTesterFromUsers < ActiveRecord::Migration[7.1]
def change
remove_column :users, :image_mode_tester, :boolean, default: false, null: false
end
end