opencode/packages/effect-drizzle-sqlite/examples/migrations/20240101000000_create_users/migration.sql

4 lines
94 B
SQL

CREATE TABLE users (
id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
name text NOT NULL
);