Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-03-04 | model: Create test data with Go instead of SQL | xengineering | |
This allows to formulate the test data with an object-based model which is easier than writing it down in a relational model. | |||
2024-02-11 | model: Switch to very basic database schema | xengineering | |
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. | |||
2023-12-27 | model: Inject test data into database | xengineering | |
This is useful for debugging and testing. |