aboutsummaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
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);
+```