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/20160608165132_add_viewer_t...

14 lines
215 B

Sequel.migration do
up do
alter_table(:users) do
add_column :viewer, :boolean, null: false, default: false
end
end
down do
alter_table(:users) do
drop_column :viewer
end
end
end