sql: add details field to part

This commit is contained in:
King Kévin 2023-01-23 14:40:35 +01:00
parent b62190db74
commit 519759e185
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ CREATE TABLE IF NOT EXISTS package (
CREATE TABLE IF NOT EXISTS part (
id INTEGER AUTO_INCREMENT PRIMARY KEY, -- index
name TEXT NOT NULL UNIQUE,
description TEXT,
description TEXT, -- a short (searchable) description
details TEXT, -- even more part details than just in the description
manufacturer INTEGER,
family INTEGER, -- if this part is part of a part family
datasheet TEXT, -- URL to datasheet