ory-am/hydra

View on GitHub
persistence/sql/migratest/testdata/20211004110001_testdata.sql

Summary

Maintainability
Test Coverage
INSERT INTO hydra_client
(
  pk,
  pk_deprecated,
  id,
  client_name,
  client_secret,
  redirect_uris,
  grant_types,
  response_types,
  scope,
  owner,
  policy_uri,
  tos_uri,
  client_uri,
  logo_uri,
  contacts,
  client_secret_expires_at,
  sector_identifier_uri,
  jwks,
  jwks_uri,
  request_uris,
  token_endpoint_auth_method,
  request_object_signing_alg,
  userinfo_signed_response_alg,
  subject_type,
  allowed_cors_origins,
  audience,
  created_at,
  updated_at,
  frontchannel_logout_uri,
  frontchannel_logout_session_required,
  post_logout_redirect_uris,
  backchannel_logout_uri,
  backchannel_logout_session_required,
  metadata,
  token_endpoint_auth_signing_alg
)
VALUES
('08f4a4b7-6601-4fd7-bb7f-29ec0681b86d',
  0,
  'client-20',
  'Client 20',
  'secret-20',
  'http://redirect/20_1',
  'grant-20_1',
  'response-20_1',
  'scope-20',
  'owner-20',
  'http://policy/20',
  'http://tos/20',
  'http://client/20',
  'http://logo/20',
  'contact-20_1',
  0,
  'http://sector_id/20',
  '',
  'http://jwks/20',
  'http://request/20_1',
  'token_auth-20',
  'r_alg-20',
  'u_alg-20',
  'subject-20',
  'http://cors/20_1',
  'autdience-20_1',
  CURRENT_TIMESTAMP,
  CURRENT_TIMESTAMP,
  'http://front_logout/20',
  true,
  'http://post_redirect/20_1',
  'http://back_logout/20',
  true,
  '{"migration": "20"}',
  ''
);