1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-30 12:06:41 +02:00

added diesel example

This commit is contained in:
Nikolay Kim
2017-12-18 16:25:26 -08:00
parent 3e8a6c3988
commit fde94bfe95
9 changed files with 173 additions and 0 deletions

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
)