opencode / packages /effect-drizzle-sqlite /examples /migrations /20240101000000_create_users /migration.sql
| CREATE TABLE users ( | |
| id integer PRIMARY KEY AUTOINCREMENT NOT NULL, | |
| name text NOT NULL | |
| ); | |
| CREATE TABLE users ( | |
| id integer PRIMARY KEY AUTOINCREMENT NOT NULL, | |
| name text NOT NULL | |
| ); | |