account
1 row where user_id = "GjvvzIWQOqQqo3zCMRff8IOJ4xcPuNAY"
This data as json, CSV (advanced)
| id ▼ | account_id | provider_id | user_id | access_token | refresh_token | id_token | access_token_expires_at | refresh_token_expires_at | scope | password | created_at | updated_at |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 5KqAvFMWN3TAZrrfrOVSCTuhr0t9VQoC | 836330993617993778 | discord | Slackliniste GjvvzIWQOqQqo3zCMRff8IOJ4xcPuNAY | MTQ5ODc0NDIxNjQxMzgwMjYxNg.o66RJiDe3UYnknYNeZnzHvZFQ24mUf | qzH78NDbdpq9PSfqL3F0KzjrVqKcMn | 1778180154657 | identify,email | 1777575340622 | 1777575354836 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE `account` (
`id` text PRIMARY KEY NOT NULL,
`account_id` text NOT NULL,
`provider_id` text NOT NULL,
`user_id` text NOT NULL,
`access_token` text,
`refresh_token` text,
`id_token` text,
`access_token_expires_at` integer,
`refresh_token_expires_at` integer,
`scope` text,
`password` text,
`created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
`updated_at` integer NOT NULL,
FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ON UPDATE no action ON DELETE cascade
);
CREATE INDEX `account_userId_idx` ON `account` (`user_id`);