new(create_database_from_exported_csvs): integrate slave log temp result

- breaking: add three columns(power_3v3d, power_3v3a, power_n3va) to single_result_table
- modified sql statements in functions in import_data.jl to have more meaning
- integrate to main `create_database_from_exported_csvs` func
This commit is contained in:
Wataru Otsubo 2024-11-01 23:27:58 +09:00
parent 14e938c589
commit dda24bc68a
7 changed files with 117 additions and 17 deletions

View file

@ -22,6 +22,9 @@ CREATE TABLE qaqc_single_run_results (
reset INTEGER,
qaqc_result INTEGER,
lvds_tx_skew REAL,
power_3v3d REAL,
power_3v3a REAL,
power_n3va REAL,
note TEXT,
FOREIGN KEY("runid") REFERENCES "qaqc_runs"("id"),
FOREIGN KEY("psboard_id") REFERENCES "ps_boards"("id"),