Files
MyTube/backend/drizzle/0009_brief_stingray.sql
2026-01-03 22:07:04 -05:00

12 lines
266 B
SQL

CREATE TABLE `passkeys` (
`id` text PRIMARY KEY NOT NULL,
`credential_id` text NOT NULL,
`credential_public_key` text NOT NULL,
`counter` integer DEFAULT 0 NOT NULL,
`transports` text,
`name` text,
`created_at` text NOT NULL,
`rp_id` text,
`origin` text
);