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

simple-auth-server added to examples (#65)

This commit is contained in:
Harry Gill
2018-12-09 15:55:36 +00:00
committed by Douman
parent 5871328be2
commit 2fc76ac49b
30 changed files with 870 additions and 0 deletions

View File

@ -0,0 +1,6 @@
-- Your SQL goes here
CREATE TABLE invitations (
id UUID NOT NULL UNIQUE PRIMARY KEY,
email VARCHAR(100) NOT NULL,
expires_at TIMESTAMP NOT NULL
);