Added database for projects

This commit is contained in:
2025-10-27 14:28:37 +01:00
parent d692bf1cdd
commit 4e53f9ed1f
4 changed files with 83 additions and 38 deletions

View File

@@ -0,0 +1,13 @@
INSERT INTO Projects ("id", "title", "description") VALUES (
'website',
'website',
'This project is the website you currently are on.'
);
INSERT INTO Project_Detail ("id", "title", "git_url", "git_title", "description") VALUES (
'website',
'website',
'https://git.aindustries.be/AINDUSTRIES/aindustries.be',
'aindustries-be',
'This project, the website you are on, is made in Rust such that all the pages are generated by code. <br> That is that each html element is represented by a struct which implements the Render trait (as in render the element to html). <br> As it is right now the system is not that impressive but I believe it can do amazing things in the future.'
)