home / app

user

2 rows

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ name email email_verified image created_at updated_at
GjvvzIWQOqQqo3zCMRff8IOJ4xcPuNAY Slackliniste slackliniste55000@gmail.com 1 https://cdn.discordapp.com/avatars/836330993617993778/8c2ecaafa9d6b519626c7db5192be2fe.png 1777575340616 1777575340616
iBuK1HOsIw8dtGxDGPHwyfawnDerpMhY Kylian Schmitt kylian54000@gmail.com 1 https://lh3.googleusercontent.com/a/ACg8ocJd6QhS69Ak8v3dbI3TGUJGK2Yob2_UiO4clnirHC9X7tkjVDBE=s96-c 1777409663066 1777409663066

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE `user` (
	`id` text PRIMARY KEY NOT NULL,
	`name` text NOT NULL,
	`email` text NOT NULL,
	`email_verified` integer DEFAULT false NOT NULL,
	`image` text,
	`created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
	`updated_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL
);
CREATE UNIQUE INDEX `user_email_unique` ON `user` (`email`);
Powered by Datasette · Queries took 17.789ms