cartodb/db/migrate/20131211150547_change_organization_quota.rb

10 lines
180 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +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