gas-stack/pkg/schema/lint/test_schemas/failure-has-nulls.sql
wispem-wantex 8b422ada11
Some checks failed
CI / release-test (push) Failing after 10s
Add sqlite-lint to 'pkg/schema/lint'
2025-08-23 18:54:00 -07:00

14 lines
359 B
SQL

create table stuff (
rowid integer primary key,
data text not null,
amount integer
) strict;
create index index_stuff_amount on stuff (amount);
create table stuff2 (
weird_pk integer primary key,
label text not null unique,
stuff_id integer references stuff(rowid),
alternative_stuff_id integer references stuff(amount)
) strict;