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

12 lines
247 B
SQL

CREATE TABLE another_users (
`id` integer PRIMARY KEY NOT NULL,
`name` text NOT NULL,
`email` text NOT NULL
);
--> statement-breakpoint
CREATE TABLE users12 (
`id` integer PRIMARY KEY NOT NULL,
`name` text NOT NULL,
`email` text NOT NULL
);