cartodb/db/migrate/20130917144013_add_geocoding_quota_to_users.rb

8 lines
120 B
Ruby
Raw Permalink Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
change do
alter_table :users do
add_column :geocoding_quota, :integer
end
end
end