mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-23 04:26:05 +00:00
4 lines
94 B
SQL
4 lines
94 B
SQL
CREATE TABLE users (
|
|
id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
name text NOT NULL
|
|
);
|