mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-19 01:51:21 +08:00
5 lines
94 B
SQL
5 lines
94 B
SQL
CREATE TABLE users (
|
|
id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
name text NOT NULL
|
|
);
|