cartodb-4.42/db/migrate/20130605112533_add_mapviews_quota_to_users.rb

8 lines
138 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
change do
alter_table :users do
add_column :map_view_quota, :integer, :default => 10000
end
end
end