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/20160624101145_add_builder_...

10 lines
338 B

Sequel.migration do
change do
alter_table :users do
# True and false automatically redirect the user to the builder/editor respectively
# Null is allowed to deactivate redirection, so the user can choose editor by changing the URL
add_column :builder_enabled, :boolean, null: true, default: true
end
end
end