cartodb-4.29/db/migrate/20160622115500_add_viewer_quota_to_organizations.rb
2020-06-15 10:58:47 +08:00

10 lines
181 B
Ruby

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