summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
Diffstat (limited to 'database')
-rw-r--r--database/dancr.dbbin0 -> 3072 bytes
-rw-r--r--database/schema.sql6
2 files changed, 6 insertions, 0 deletions
diff --git a/database/dancr.db b/database/dancr.db
new file mode 100644
index 0000000..dc977eb
--- /dev/null
+++ b/database/dancr.db
Binary files differ
diff --git a/database/schema.sql b/database/schema.sql
new file mode 100644
index 0000000..2bd7916
--- /dev/null
+++ b/database/schema.sql
@@ -0,0 +1,6 @@
+create table if not exists entries (
+ id integer primary key autoincrement,
+ date date not null,
+ title string not null,
+ text string not null
+);