diff options
author | xengineering <me@xengineering.eu> | 2024-02-06 19:58:49 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-02-11 20:03:15 +0100 |
commit | 30303b34012f22cbe898dcebfd460709b206181d (patch) | |
tree | 6ecdf0e65dc30b8012fed971e8cce2b349eec700 /model | |
parent | 1978c5257e2cf4720716b59c3d69dc21cf457c18 (diff) | |
download | ceres-30303b34012f22cbe898dcebfd460709b206181d.tar ceres-30303b34012f22cbe898dcebfd460709b206181d.tar.zst ceres-30303b34012f22cbe898dcebfd460709b206181d.zip |
model: Switch to very basic database schema
This simple model is used to test if it is helpful to implement the four
CRUD methods create, read, update and delete all inside the model
package.
The model package should also provide the datastructures for these
operations (well suited for the required views) aswell as tests for
them.
With this approach it should be possible to easily implement the view
and controller package because most of the logic is already inside the
model package and is tested.
Diffstat (limited to 'model')
-rw-r--r-- | model/sql/migrate.sql | 21 | ||||
-rw-r--r-- | model/sql/testdata.sql | 13 |
2 files changed, 11 insertions, 23 deletions
diff --git a/model/sql/migrate.sql b/model/sql/migrate.sql index 6ca4d0f..c548724 100644 --- a/model/sql/migrate.sql +++ b/model/sql/migrate.sql @@ -1,14 +1,9 @@ -CREATE TABLE 'recipes' ( - 'id' integer PRIMARY KEY AUTOINCREMENT, - 'title' text DEFAULT '', - 'portions' text DEFAULT '', -- FIXME has to be integer - 'url' text DEFAULT '', - 'notes' text DEFAULT '' -); - -CREATE TABLE 'recipe_steps' ( - 'id' integer PRIMARY KEY, - 'recipe_id' integer DEFAULT NULL, - 'rank' integer DEFAULT NULL, - 'text' text DEFAULT '' +CREATE TABLE recipes ( + 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 timestamp + last_changed INTEGER NOT NULL -- unix timestamp ); diff --git a/model/sql/testdata.sql b/model/sql/testdata.sql index f2cd6e3..e47bde9 100644 --- a/model/sql/testdata.sql +++ b/model/sql/testdata.sql @@ -1,13 +1,6 @@ INSERT INTO 'recipes' - ('id', 'title', 'portions', 'url', 'notes') + (id, title, portions, url, notes, created, last_changed) VALUES - (1, 'Pancakes', 4, 'https://example.org', 'Very fluffy'), - (2, 'Burger', 2, 'https://xengineering.eu/git/ceres', 'Delicious!') -; - -INSERT INTO 'recipe_steps' - ('id', 'recipe_id', 'rank', 'text') -VALUES - (1, 1, 1, 'Stir the dough'), - (2, 1, 2, 'Fry pancakes') + (1, 'Pancakes', 4, 'https://example.org', 'Very fluffy', strftime('%s', 'now'), strftime('%s', 'now')), + (2, 'Burger', 2, 'https://xengineering.eu/git/ceres', 'Delicious!', strftime('%s', 'now'), strftime('%s', 'now')) ; |