13 lines
676 B
SQL
13 lines
676 B
SQL
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.'
|
|
) |