Fixed migration (references #658)

This commit is contained in:
Bernd Bestel 2020-03-25 20:39:19 +01:00
parent 7b737590ea
commit 4f40b40fe0
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -1,7 +1,7 @@
CREATE TABLE shopping_locations (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
name TEXT NOT NULL UNIQUE,
description TEXT
description TEXT,
row_created_timestamp DATETIME DEFAULT (datetime('now', 'localtime'))
);