cartodb-4.42/db/migrate/20150724121847_remove_table_count_from_users.rb
2024-04-06 05:25:13 +00:00

10 lines
152 B
Ruby

Sequel.migration do
up do
drop_column :users, :tables_count
end
down do
add_column :users, :tables_count, :integer, default: 0
end
end