make custom tags and owner available in db
This commit is contained in:
parent
9521e5d4e9
commit
575cfd3b7a
1 changed files with 3 additions and 0 deletions
|
@ -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)''')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue