home / kengdb / oauthAccountTb

oauthAccountTb

Table actions Table actions
  • Edit table schema

✎ View and edit SQL

This data as json

0 records

CREATE TABLE oauthAccountTb (
                id INTEGER PRIMARY KEY AUTOINCREMENT,
                user_id INTEGER NOT NULL,
                provider TEXT NOT NULL,
                provider_user_id TEXT NOT NULL,
                email TEXT NOT NULL DEFAULT '',
                created REAL NOT NULL DEFAULT (unixepoch()),
                UNIQUE(provider, provider_user_id)
            );
CREATE INDEX idx_oauth_user ON oauthAccountTb(user_id);
Powered by Datasette · Queries took 1.2ms