Add diesel and example page
This commit is contained in:
parent
1197fe687b
commit
d20ca7cfa9
20 changed files with 453 additions and 14 deletions
1
migrations/2022-03-21-202844_create_users/down.sql
Normal file
1
migrations/2022-03-21-202844_create_users/down.sql
Normal file
|
@ -0,0 +1 @@
|
|||
DROP TABLE users;
|
4
migrations/2022-03-21-202844_create_users/up.sql
Normal file
4
migrations/2022-03-21-202844_create_users/up.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
CREATE TABLE users (
|
||||
id VARCHAR NOT NULL PRIMARY KEY,
|
||||
name VARCHAR NOT NULL
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue