You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20160701125000_add_viewer_t...

14 lines
227 B

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