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

9 lines
247 B
Ruby

Sequel.migration do
change do
alter_table :organizations do
add_column :auth_username_password_enabled, :boolean, null: false, default: true
add_column :auth_google_enabled, :boolean, null: false, default: true
end
end
end