126fb1e5cb
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>
18 lines
294 B
SQL
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
|
|
)
|