Files

9 lines
272 B
SQL

CREATE TABLE IF NOT EXISTS creator_account_password (
account_id text PRIMARY KEY REFERENCES social_account (
id
) ON DELETE CASCADE,
secret_reference_id text NOT NULL,
secret_key text NOT NULL,
updated_at timestamptz NOT NULL DEFAULT now()
);