1
0
Fork 0

Add diesel and example page

This commit is contained in:
Florian RICHER (MrDev023) 2022-03-21 22:37:03 +01:00
parent 1197fe687b
commit d20ca7cfa9
20 changed files with 453 additions and 14 deletions

0
migrations/.gitkeep Normal file
View file

View file

@ -0,0 +1 @@
DROP TABLE users;

View file

@ -0,0 +1,4 @@
CREATE TABLE users (
id VARCHAR NOT NULL PRIMARY KEY,
name VARCHAR NOT NULL
);