Matchu
644a6acc72
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!
5 lines
175 B
Ruby
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
|