db structure
This commit is contained in:
parent
427bc06e69
commit
b068ff0b42
5 changed files with 9 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -99,3 +99,5 @@ ENV/
|
|||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
|
||||
ztm.db
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
# ztm
|
||||
ztm
|
||||
|
||||
Task manager that stores in sqlite. Should be possible to work from console, search with FZF, editable with ViM.
|
||||
|
|
BIN
default.db
Normal file
BIN
default.db
Normal file
Binary file not shown.
2
tags
Normal file
2
tags
Normal file
|
@ -0,0 +1,2 @@
|
|||
!_TAG_FILE_SORTED 2 /0=unsorted, 1=sorted, 2=foldcase/
|
||||
sqlite3 /home/arnas/Skleps/ztm/ztm.py /^import sqlite3$/;" i language:Python
|
3
ztm.py
Normal file
3
ztm.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
import sqlite3
|
||||
|
||||
|
Reference in a new issue