Files
2026-07-13 12:10:05 +08:00

7 lines
185 B
SQL

CREATE TABLE `userstest` (
`id` serial PRIMARY KEY,
`name` text NOT NULL,
`verified` boolean NOT NULL DEFAULT false,
`jsonb` json,
`created_at` timestamp NOT NULL DEFAULT now()
);