spec/internal/db/schema.rb in gds-sso-15.0.0 vs spec/internal/db/schema.rb in gds-sso-15.0.1

- old
+ new

@@ -1,16 +1,16 @@ # frozen_string_literal: true ActiveRecord::Schema.define do # Set up any tables you need to exist for your test suite that don't belong # in migrations. - create_table "users", :force => true do |t| - t.string "name", :null => false - t.string "uid", :null => false - t.string "email", :null => false + create_table "users", force: true do |t| + t.string "name", null: false + t.string "uid", null: false + t.string "email", null: false t.boolean "remotely_signed_out" t.text "permissions" t.string "organisation_slug" t.string "organisation_content_id" - t.boolean "disabled", :default => false + t.boolean "disabled", default: false end end