cartodb-4.42/db/migrate/20160622115500_add_viewer_quota_to_organizations.rb

10 lines
181 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
up do
add_column :organizations, :viewer_seats, :integer, null: false, default: 0
end
down do
drop_column :organizations, :viewer_seats
end
end