diff options
author | xengineering <me@xengineering.eu> | 2024-11-03 15:49:43 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-11-03 16:05:55 +0100 |
commit | 7cd3a096a975801a07fb3ff06b6fac70e17234ce (patch) | |
tree | 36ce667817f6dc393dd2363e61ef9a6bafb424e1 /model/sql/migration002.sql | |
parent | 7361801b45640ead9db82769434eb181c31e57e6 (diff) | |
download | ceres-7cd3a096a975801a07fb3ff06b6fac70e17234ce.tar ceres-7cd3a096a975801a07fb3ff06b6fac70e17234ce.tar.zst ceres-7cd3a096a975801a07fb3ff06b6fac70e17234ce.zip |
model: Implement favorite recipes
This adds the ability to store a flag `is_favorite` inside the database.
The corresponding SQL migration is part of this commit.
Furthermore the Go code in the model package is adapted.
Diffstat (limited to 'model/sql/migration002.sql')
-rw-r--r-- | model/sql/migration002.sql | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/model/sql/migration002.sql b/model/sql/migration002.sql new file mode 100644 index 0000000..89837b3 --- /dev/null +++ b/model/sql/migration002.sql @@ -0,0 +1,30 @@ +-- Database schema 2 adds the ability to save recipes as favorites. + +CREATE TABLE recipes_new ( + id INTEGER PRIMARY KEY, + title TEXT NOT NULL, + portions INTEGER NOT NULL, + url TEXT NOT NULL, + notes TEXT NOT NULL, + created INTEGER NOT NULL, -- Unix time stamp + last_changed INTEGER NOT NULL, -- Unix time stamp + is_favorite BOOLEAN NOT NULL DEFAULT FALSE +); + +INSERT INTO + recipes_new + (id, title, portions, url, notes, created, last_changed, is_favorite) +SELECT + id, title, portions, url, notes, created, last_changed, FALSE +FROM recipes; + +DROP TABLE recipes; + +ALTER TABLE recipes_new RENAME TO recipes; + +UPDATE + metadata +SET + value = '3' +WHERE + key = 'schema_version'; |