db/schema.rb in osso-0.0.3.7 vs db/schema.rb in osso-0.0.3.8
- old
+ new
@@ -8,11 +8,11 @@
# migrations from scratch. Old migrations may fail to apply correctly if those
# migrations use external dependencies or application code.
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2020_07_15_205801) do
+ActiveRecord::Schema.define(version: 2020_07_22_230116) do
# These are extensions that must be enabled in order to support this database
enable_extension "pgcrypto"
enable_extension "plpgsql"
@@ -49,20 +49,11 @@
t.string "name", null: false
t.index ["domain"], name: "index_enterprise_accounts_on_domain", unique: true
t.index ["oauth_client_id"], name: "index_enterprise_accounts_on_oauth_client_id"
end
- create_table "identity_providers", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
- t.string "service"
- t.string "domain", null: false
- t.string "sso_url"
- t.text "sso_cert"
- t.uuid "enterprise_account_id"
- t.uuid "oauth_client_id"
- t.index ["domain"], name: "index_identity_providers_on_domain"
- t.index ["enterprise_account_id"], name: "index_identity_providers_on_enterprise_account_id"
- t.index ["oauth_client_id"], name: "index_identity_providers_on_oauth_client_id"
- end
+# Could not dump table "identity_providers" because of following StandardError
+# Unknown type 'identity_provider_status' for column 'status'
create_table "oauth_access_grants", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t|
t.uuid "resource_owner_id", null: false
t.uuid "application_id", null: false
t.string "token", null: false