aboutsummaryrefslogtreecommitdiff
path: root/TaskApp.wiki
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2019-09-30 18:02:16 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2019-09-30 18:02:16 +0200
commit2080c821ef01f61ee8f6219e51d7edc065228fe6 (patch)
tree0e31547111a80cdefaf1f52320d684a51cee4c30 /TaskApp.wiki
parentMerge branch 'master' of git:git/wiki-public (diff)
downloadwiki-public-2080c821ef01f61ee8f6219e51d7edc065228fe6.tar.gz
wiki-public-2080c821ef01f61ee8f6219e51d7edc065228fe6.tar.xz
Mon, 30 Sep 2019 18:02:16 +0200
Diffstat (limited to 'TaskApp.wiki')
-rw-r--r--TaskApp.wiki53
1 files changed, 53 insertions, 0 deletions
diff --git a/TaskApp.wiki b/TaskApp.wiki
new file mode 100644
index 0000000..f356f41
--- /dev/null
+++ b/TaskApp.wiki
@@ -0,0 +1,53 @@
+
+notation:
+
+item :: item of type
+[item] :: list of item's
+{item} :: optional item
+
+--------------------------------------------------
+
+[project]
+
+project:
+ - title
+ - started
+ - {deadline}
+ - [link]
+ - [update]
+
+update:
+ - title
+ - pub-date
+ - {body}
+
+--------------------------------------------------
+
+tt list
+tt note <id>
+tt list <id>
+
+--------------------------------------------------
+
+sqlite example tables
+
+create table projects (
+ id primary key not null,
+ title text not null,
+ started datetime not null,
+ deadline datetime
+);
+
+create table links (
+ id primary key not null,
+ project_id integer not null,
+ url text
+);
+
+create table updates (
+ id primary key not null,
+ project_id integer not null,
+ pub_date datetime not null,
+ title text not null,
+ body text
+);