aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorFilipp Lepalaan <f@230.to>2014-06-06 18:15:38 +0300
committerFilipp Lepalaan <f@230.to>2014-06-06 18:15:38 +0300
commit13de2852294a911c24cee79c961ac4011fd13e88 (patch)
tree1c39fbd7e85539c7a81d6cd4cc9bc9ac05972fc9 /README.rst
parent86a3727d8558974cbba2d7f6bc16a3dd5c0a7ac5 (diff)
downloadmembrain-master.tar.gz
membrain-master.tar.bz2
membrain-master.zip
Third commitHEADmaster
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index b26626f..b1cc26a 100644
--- a/README.rst
+++ b/README.rst
@@ -3,6 +3,6 @@ Membrain is an app for remembering things. The idea is very simple - you enter d
## DB Schema
```
-create table objects (id integer primary key autoincrement, title text, icon text, updated datetime);
-create table properties (id integer primary key autoincrement, object_id integer, key text, value text);
+CREATE TABLE objects (id integer primary key autoincrement, title text, icon text, updated datetime);
+CREATE TABLE properties (id integer primary key autoincrement, object_id integer, key text, value text, type text);
```