refactor: 用 per-domain fixture 替代 seed.py

This commit is contained in:
zetaloop
2026-05-03 07:24:20 +08:00
parent d1031f48b3
commit 22c7c4e7d9
11 changed files with 240 additions and 387 deletions
+9
View File
@@ -0,0 +1,9 @@
INSERT INTO games (id, name, icon, category, sort_order) VALUES
(100001, '英雄联盟', '🎮', 'MOBA', 1),
(100002, '王者荣耀', '👑', 'MOBA', 2),
(100003, 'VALORANT', '🔫', 'FPS', 3),
(100004, '永劫无间', '⚔️', 'ACT', 4),
(100005, '原神', '🌟', 'RPG', 5),
(100006, 'CS2', '💣', 'FPS', 6),
(100007, '绝地求生', '🪖', 'FPS', 7),
(100008, '和平精英', '🎯', 'FPS', 8);