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