home / app

session

1 row where user_id = "GjvvzIWQOqQqo3zCMRff8IOJ4xcPuNAY"

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ expires_at token created_at updated_at ip_address user_agent user_id
4clw9VFdN5hW1Yu0702aoeIR0f4TUo0b 1779309967928 xtoPxlUvMuxWo4TDbd1g4UGKe84MOm56 1777575354838 1778705167928 90.168.50.147 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Slackliniste GjvvzIWQOqQqo3zCMRff8IOJ4xcPuNAY

Advanced export

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

CSV options:

CREATE TABLE `session` (
	`id` text PRIMARY KEY NOT NULL,
	`expires_at` integer NOT NULL,
	`token` text NOT NULL,
	`created_at` integer DEFAULT (cast(unixepoch('subsecond') * 1000 as integer)) NOT NULL,
	`updated_at` integer NOT NULL,
	`ip_address` text,
	`user_agent` text,
	`user_id` text NOT NULL,
	FOREIGN KEY (`user_id`) REFERENCES `user`(`id`) ON UPDATE no action ON DELETE cascade
);
CREATE UNIQUE INDEX `session_token_unique` ON `session` (`token`);
CREATE INDEX `session_userId_idx` ON `session` (`user_id`);
Powered by Datasette · Queries took 13.227ms