Fix examples for migrated packages
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s

Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
This commit is contained in:
Jan Tytgat
2025-05-21 21:12:56 +02:00
parent eff54c7779
commit e246836084
19 changed files with 482 additions and 0 deletions

View File

@ -0,0 +1,13 @@
CREATE TABLE IF NOT EXISTS demo
(
id INTEGER NOT NULL
CONSTRAINT p_id
PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL
CONSTRAINT u_name
UNIQUE
ON CONFLICT FAIL
);
INSERT INTO demo (name)
VALUES ('item1')