Tools: fix sqlite database creation

This commit is contained in:
Pierre Kancir 2020-10-28 22:12:58 +01:00 committed by Peter Barker
parent 46976c4358
commit fd0e822074

View File

@ -26,6 +26,7 @@ class BuildBinariesHistory():
c.execute("create table build (hash text, tag text, vehicle text, board text, "
"frame text, text integer, data integer, bss integer, start_time real, duration real)")
c.execute("create table run (hash text, tag text, start_time real, duration real)")
c.commit()
def sizes_for_file(self, filepath):
cmd = "size %s" % (filepath,)