cartodb-4.42/db/migrate/20141229083623_remove_ghost_tables_enabled_from_users.rb

10 lines
158 B
Ruby
Raw Normal View History

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