5 lines
84 B
SQL
5 lines
84 B
SQL
CREATE TABLE `users` (
|
|
`id` integer PRIMARY KEY NOT NULL,
|
|
`name` text NOT NULL
|
|
);
|