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