12 lines
247 B
SQL
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
|
|
);
|