cartodb-4.42/db/migrate/20160701125000_add_viewer_to_invitations.rb

14 lines
227 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
up do
alter_table(:invitations) do
add_column :viewer, :boolean, null: false, default: false
end
end
down do
alter_table(:invitations) do
drop_column :viewer
end
end
end