mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-24 05:14:44 +00: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
|
|
);
|