cartodb-4.42/db/migrate/20131211150547_change_organization_quota.rb

10 lines
180 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
up do
set_column_type :organizations, :quota_in_bytes, :bigint
end
down do
set_column_type :organizations, :quota_in_bytes, :integer
end
end