Houmgaor
27fb0faa1e
feat(db): add embedded auto-migrating schema system
...
Replace 4 independent schema management code paths (Docker shell
script, setup wizard pg_restore, test helpers, manual psql) with a
single migration runner embedded in the server binary.
The new server/migrations/ package uses Go embed to bundle all SQL
schemas. On startup, Migrate() creates a schema_version tracking
table, detects existing databases (auto-marks baseline as applied),
and runs pending migrations in transactions.
Key changes:
- Consolidated init.sql + 9.2-update + 33 patches into 0001_init.sql
- Setup wizard simplified to single "Apply schema" checkbox
- Test helpers use migrations.Migrate() instead of pg_restore
- Docker no longer needs schema volume mounts or init script
- Seed data (shops, events, gacha) embedded and applied via API
- Future migrations just add 0002_*.sql files — no manual steps
2026-02-23 21:19:21 +01:00
..
2026-02-22 15:47:21 +01:00
2026-02-22 15:47:21 +01:00
2026-02-22 15:47:21 +01:00
2026-02-21 00:28:27 +01:00
2026-02-20 21:18:40 +01:00
2026-02-20 21:18:40 +01:00
2026-02-23 18:09:08 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 14:01:52 +01:00
2026-02-21 13:13:55 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 14:01:52 +01:00
2026-02-21 14:16:58 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 13:20:15 +01:00
2026-02-20 22:18:46 +01:00
2026-02-21 14:47:25 +01:00
2026-02-21 14:08:01 +01:00
2026-02-22 15:47:21 +01:00
2026-02-22 15:47:21 +01:00
2026-02-23 16:52:28 +01:00
2026-02-22 17:04:58 +01:00
2026-02-22 16:16:44 +01:00
2026-02-22 16:46:57 +01:00
2026-02-22 16:16:44 +01:00
2026-02-21 13:20:15 +01:00
2026-02-23 18:24:54 +01:00
2026-02-23 17:01:20 +01:00
2026-02-23 18:24:54 +01:00
2026-02-21 13:39:44 +01:00
2026-02-22 17:01:22 +01:00
2026-02-20 22:18:46 +01:00
2026-02-22 18:55:31 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 14:16:58 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 14:16:58 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 17:37:29 +01:00
2026-02-22 16:05:25 +01:00
2026-02-21 00:53:10 +01:00
2026-02-21 14:01:52 +01:00
2026-02-21 13:27:08 +01:00
2026-02-21 18:10:19 +01:00
2026-02-20 22:14:48 +01:00
2026-02-21 18:10:19 +01:00
2026-02-20 22:14:48 +01:00
2026-02-21 17:58:08 +01:00
2026-02-21 17:37:29 +01:00
2026-02-21 18:10:19 +01:00
2026-02-21 00:42:16 +01:00
2026-02-21 18:10:19 +01:00
2026-02-22 17:01:22 +01:00
2026-02-20 22:06:55 +01:00
2026-02-20 21:18:40 +01:00
2026-02-21 17:58:08 +01:00
2026-02-22 18:38:10 +01:00
2026-02-21 17:58:08 +01:00
2026-02-21 17:37:29 +01:00
2026-02-22 16:46:57 +01:00
2026-02-21 18:10:19 +01:00
2026-02-20 22:14:48 +01:00
2026-02-22 16:46:57 +01:00
2026-02-22 18:55:31 +01:00
2026-02-20 22:18:46 +01:00
2026-02-21 13:49:25 +01:00
2026-02-21 17:37:29 +01:00
2026-02-21 17:58:08 +01:00
2026-02-21 17:37:29 +01:00
2026-02-22 18:55:31 +01:00
2026-02-20 21:18:40 +01:00
2026-02-21 14:01:52 +01:00
2026-02-20 23:31:27 +01:00
2026-02-21 17:37:29 +01:00
2026-02-21 14:16:58 +01:00
2026-02-21 13:39:44 +01:00
2026-02-22 16:05:25 +01:00
2026-02-21 13:39:44 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 13:20:15 +01:00
2026-02-22 16:32:43 +01:00
2026-02-20 21:18:40 +01:00
2026-02-21 00:28:27 +01:00
2026-02-21 17:37:29 +01:00
2026-02-20 21:18:40 +01:00
2026-02-21 13:39:44 +01:00
2026-02-22 18:55:31 +01:00
2026-02-21 14:16:58 +01:00
2026-02-22 18:55:31 +01:00
2026-02-20 21:18:40 +01:00
2026-02-22 16:16:44 +01:00
2026-02-23 19:34:30 +01:00
2026-02-21 13:20:15 +01:00
2026-02-22 16:05:25 +01:00
2026-02-21 14:16:58 +01:00
2026-02-22 15:47:21 +01:00
2026-02-22 17:04:58 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 13:39:44 +01:00
2026-02-21 13:39:44 +01:00
2026-02-21 13:20:15 +01:00
2026-02-21 13:56:46 +01:00
2026-02-21 13:39:44 +01:00
2026-02-22 17:01:22 +01:00
2026-02-21 13:56:46 +01:00
2026-02-21 13:35:04 +01:00
2026-02-21 13:13:55 +01:00
2026-02-21 14:16:58 +01:00
2026-02-21 14:21:32 +01:00
2026-02-21 14:08:01 +01:00
2026-02-21 14:47:25 +01:00
2026-02-21 14:16:58 +01:00
2026-02-21 14:56:59 +01:00
2026-02-22 16:55:59 +01:00
2026-02-22 16:55:59 +01:00
2026-02-21 14:47:25 +01:00
2026-02-21 13:27:08 +01:00
2026-02-22 16:42:03 +01:00
2026-02-22 16:42:03 +01:00
2026-02-22 16:42:03 +01:00
2026-02-22 16:42:03 +01:00
2026-02-22 16:42:03 +01:00
2026-02-22 16:55:59 +01:00
2026-02-21 14:56:59 +01:00
2026-02-22 16:55:59 +01:00
2026-02-21 14:47:25 +01:00
2026-02-22 16:46:57 +01:00
2026-02-21 14:56:59 +01:00
2026-02-21 14:47:25 +01:00
2026-02-21 14:47:25 +01:00
2026-02-22 16:46:57 +01:00
2026-02-21 14:16:58 +01:00
2026-02-21 14:47:25 +01:00
2026-02-21 00:06:23 +01:00
2026-02-21 14:16:58 +01:00
2026-02-22 16:46:57 +01:00
2026-02-21 14:47:25 +01:00
2026-02-21 14:21:32 +01:00
2026-02-21 14:08:01 +01:00
2026-02-22 15:47:21 +01:00
2026-02-23 19:34:30 +01:00
2026-02-22 16:16:44 +01:00
2026-02-22 16:16:44 +01:00
2026-02-21 13:20:15 +01:00
2026-02-22 16:16:44 +01:00
2026-02-23 19:34:30 +01:00
2026-02-22 15:47:21 +01:00
2026-02-22 16:46:57 +01:00
2026-02-22 16:16:44 +01:00
2026-02-23 21:19:21 +01:00
2026-02-21 13:56:46 +01:00
2026-02-21 13:39:44 +01:00