aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2014-06-05 22:50:33 +0300
committerFilipp Lepalaan <filipp@mac.com>2014-06-05 22:50:33 +0300
commit9909d82ed9f89f1b72d5bead21e93bf2f2039c35 (patch)
tree069693c372c8002634e569ebcf3fe5da59326862 /README.rst
parent39bc2b230b5de771974e174b5b5bbb62b54e6015 (diff)
downloadmembrain-9909d82ed9f89f1b72d5bead21e93bf2f2039c35.tar.gz
membrain-9909d82ed9f89f1b72d5bead21e93bf2f2039c35.tar.bz2
membrain-9909d82ed9f89f1b72d5bead21e93bf2f2039c35.zip
Switched to sqlite
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..b26626f
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,8 @@
+Membrain is an app for remembering things. The idea is very simple - you enter data by defining both the name and value of the data that is being saved.
+
+## 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);
+```