Add server/src/seed.sql

This commit is contained in:
2025-11-13 15:29:54 +00:00
parent 59a71f17c8
commit ac55ae3ff2

7
server/src/seed.sql Normal file
View File

@@ -0,0 +1,7 @@
INSERT INTO items (key, name, stack_max) VALUES
('wood', 'Logs', 999),
('stone', 'Stone', 999),
('ore', 'Copper Ore', 999),
('fiber', 'Plant Fiber', 999),
('plank', 'Wooden Plank', 999)
ON CONFLICT (key) DO NOTHING;