cartodb/db/migrate/20130605112533_add_mapviews_quota_to_users.rb
2020-06-15 10:58:47 +08:00

8 lines
138 B
Ruby

Sequel.migration do
change do
alter_table :users do
add_column :map_view_quota, :integer, :default => 10000
end
end
end