Query
CREATE TABLE oauth_session (
id TEXT NOT NULL,
user_id TEXT NOT NULL,
provider TEXT NOT NULL,
token TEXT NOT NULL,
expires_at BIGINT NOT NULL,
created_at BIGINT NOT NULL,
updated_at BIGINT NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY(user_id) REFERENCES user (id) ON DELETE CASCADE
)