mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 16:38:18 +00:00
5 lines
160 B
Ruby
5 lines
160 B
Ruby
class AddMapOptoutToPublicUsers < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_column :public_users, :opted_out_of_map, :boolean, default: false
|
|
end
|
|
end
|