make custom tags and owner available in db

This commit is contained in:
Justus Kuhlmann 2025-03-30 18:01:23 +00:00
parent 9521e5d4e9
commit 575cfd3b7a

View file

@ -17,6 +17,7 @@ def _create_db(db):
code TEXT,
path TEXT,
project TEXT,
customTags TEXT,
parameters TEXT,
parameter_file TEXT,
created_at TEXT,
@ -24,6 +25,8 @@ def _create_db(db):
c.execute('''CREATE TABLE IF NOT EXISTS projects
(id TEXT PRIMARY KEY,
aliases TEXT,
customTags TEXT,
owner TEXT,
code TEXT,
created_at TEXT,
updated_at TEXT)''')