chore(db): add schemas directory from upstream

- Add init.sql for database bootstrap (9.1.0)
- Add update-schema/9.2-update.sql for 9.1 → 9.2 migration
- Add bundled-schema/ with demo data templates
- Empty patch-schema/ ready for 9.2.x patches
This commit is contained in:
Houmgaor
2026-01-30 00:37:59 +01:00
parent 3a1b410ee3
commit 0822835f1b
13 changed files with 2451 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
BEGIN;
TRUNCATE public.cafebonus;
INSERT INTO public.cafebonus (time_req, item_type, item_id, quantity)
VALUES
(1800, 17, 0, 50),
(3600, 17, 0, 100),
(7200, 17, 0, 200),
(10800, 17, 0, 300),
(18000, 17, 0, 350),
(28800, 17, 0, 500),
(43200, 17, 0, 500);
END;