Read-it-later social network
at refactor/site.standard 11 lines 309 B view raw
1CREATE TABLE "auth_session" ( 2 "key" text PRIMARY KEY NOT NULL, 3 "session" json NOT NULL, 4 CONSTRAINT "auth_session_key_unique" UNIQUE("key") 5); 6--> statement-breakpoint 7CREATE TABLE "auth_state" ( 8 "key" text PRIMARY KEY NOT NULL, 9 "state" json NOT NULL, 10 CONSTRAINT "auth_state_key_unique" UNIQUE("key") 11);