gas-stack/pkg/codegen/tpl/schema.sql
wispem-wantex 2c8b842f17
All checks were successful
CI / release-test (push) Successful in 26s
Add package initialization subcommand and package
2025-08-24 14:47:37 -07:00

11 lines
160 B
SQL

PRAGMA foreign_keys = on;
-- =======
-- DB meta
-- =======
create table db_version (
version integer not null
) strict;
insert into db_version values(0);