new: add resistance test table & data putting procedure

This commit is contained in:
Wataru Otsubo 2024-09-12 20:38:12 +09:00 committed by qwjyh
parent eba8d8f395
commit ecbb3daa14
2 changed files with 20 additions and 19 deletions

View file

@ -49,7 +49,7 @@ CREATE TABLE qaqc_campaigns (
);
CREATE TABLE qaqc_resistance_check (
id INTEGER NOT NULL PRIMARY KEY,
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
psb_id INTEGER NOT NULL,
passed BOOLEAN,
FOREIGN KEY("psb_id") REFERENCES "ps_boards"("id")