Files
BrickTracker/bricktracker/sql/set/insert.sql
T
FrederikBaerentsen 126fb1e5cb feat(add): set metadata on add — purchase, notes, statuses
Allow setting owners, purchase (date, price, location), notes,
statuses, storage, and tags directly from the add set form.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-09 20:23:47 +01:00

18 lines
294 B
SQL

INSERT OR IGNORE INTO "bricktracker_sets" (
"id",
"set",
"storage",
"purchase_location",
"purchase_date",
"purchase_price",
"description"
) VALUES (
:id,
:set,
:storage,
:purchase_location,
:purchase_date,
:purchase_price,
:description
)