1
0
mirror of https://github.com/actix/examples synced 2025-06-28 18:00:37 +02:00

Update to new actix 1.0 api, drop actix-rt (#158)

This commit is contained in:
Harry Gill
2019-07-18 12:55:14 +01:00
committed by Nikolay Kim
parent 258eae3bb9
commit 7525903fe6
15 changed files with 264 additions and 374 deletions

View File

@ -1,6 +1,6 @@
-- Your SQL goes here
CREATE TABLE users (
email VARCHAR(100) NOT NULL UNIQUE PRIMARY KEY,
password VARCHAR(64) NOT NULL, --bcrypt hash
hash VARCHAR(122) NOT NULL, --argon hash
created_at TIMESTAMP NOT NULL
);