diff options
Diffstat (limited to 'database/schema.sql')
| -rw-r--r-- | database/schema.sql | 6 |
1 files changed, 6 insertions, 0 deletions
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 +); |
