BrickTracker/bricktracker/sql/set/insert.sql

12 lines
173 B
MySQL
Raw Normal View History

INSERT OR IGNORE INTO "bricktracker_sets" (
"id",
2025-02-03 16:46:45 +01:00
"set",
2025-02-04 12:52:18 +01:00
"storage",
"purchase_location"
2025-01-17 11:03:00 +01:00
) VALUES (
:id,
2025-02-03 16:46:45 +01:00
:set,
2025-02-04 12:52:18 +01:00
:storage,
:purchase_location
2025-01-17 11:03:00 +01:00
)