cartodb-4.42/db/migrate/20141103182931_add_ghost_tables_user_flag.rb

10 lines
174 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
up do
add_column :users, :ghost_tables_enabled, :boolean, default: false
end
down do
drop_column :users, :ghost_tables_enabled
end
end