package db
// SQLite3 is a test only database. There is only one migration because we do not support migrations.
const sqlite3Migration = `
CREATE TABLE authd_user (
id text NOT NULL UNIQUE,
email text,
email_verified integer,
display_name text,
admin integer,
created_at bigint,
disabled integer
);
CREATE TABLE client_identity (
secret blob,
metadata text,
dex_admin integer
CREATE TABLE connector_config (
type text,
config text
CREATE TABLE key (
value blob
CREATE TABLE password_info (
user_id text NOT NULL UNIQUE,
password text,
password_expires bigint
CREATE TABLE refresh_token (
id integer PRIMARY KEY,
payload_hash blob,
user_id text,
client_id text,
scopes text
CREATE TABLE remote_identity_mapping (
connector_id text NOT NULL,
remote_id text NOT NULL
CREATE TABLE session (
state text,
expires_at bigint,
client_state text,
redirect_url text,
identity text,
connector_id text,
register integer,
nonce text,
scope text
CREATE TABLE session_key (
key text NOT NULL,
session_id text,
stale integer
CREATE TABLE trusted_peers (
client_id text NOT NULL,
trusted_client_id text NOT NULL
`