home / app

session

1 row where user_id = "iBuK1HOsIw8dtGxDGPHwyfawnDerpMhY"

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ expires_at token created_at updated_at ip_address user_agent user_id
HuR10QB6hu9shGcAvHGL2IKTQEYvJrBB 1779156621433 Qb3YRSoXGqttrtudAH3daGrNHw70C1I9 1778551821433 1778551821433 90.168.50.147 Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Mobile Safari/537.36 Kylian Schmitt iBuK1HOsIw8dtGxDGPHwyfawnDerpMhY

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 58.437ms