+/- table definition

Query

CREATE TABLE `oidc_authorization_codes`  (
  `code_hash` text PRIMARY KEY NOT NULL,
  `client_id` text NOT NULL,
  `redirect_uri` text NOT NULL,
  `scope_json` text NOT NULL,
  `nonce` text,
  `code_challenge` text,
  `code_challenge_method` text,
  `external_subject` text NOT NULL,
  `email` text,
  `username` text,
  `first_name` text,
  `last_name` text,
  `display_name` text,
  `groups_json` text DEFAULT '[]' NOT NULL,
  `roles_json` text DEFAULT '[]' NOT NULL,
  `auth_time` text NOT NULL,
  `created_at` text NOT NULL,
  `expires_at` text NOT NULL
)
Use Shift + Up/Down to navigate recently-executed queries