Merge branch 'main' into feature-clock-parse

This commit is contained in:
Wataru Otsubo 2024-11-04 05:27:24 +09:00
commit 78ece0b31c
6 changed files with 15 additions and 5 deletions

View file

@ -63,6 +63,7 @@ function create_database_from_exported_csvs(
extra_100test_result_df = CSV.read(hundred_csv, DataFrame)
jathubs_table = CSV.read(jathubs_csv, DataFrame)
insert_version_info(db)
insert_qaqc_campaign_id(db)
insert_qaqc_positions(db, jathubs_table)

View file

@ -10,6 +10,7 @@ function insert_version_info(db::SQLite.DB)
INSERT INTO versions VALUES (:converter)
""",
)
@info "converter version info" pkgversion(@__MODULE__) |> string
DBInterface.execute(
stmt_insert_version,
(; converter = pkgversion(@__MODULE__) |> string),