added second test login, moved into seperate folder

This commit is contained in:
2020-04-02 12:22:59 +00:00
parent b00413de93
commit 76c711a58b
12 changed files with 384 additions and 7 deletions

6
login/schema.sql Normal file
View File

@ -0,0 +1,6 @@
CREATE TABLE user (
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
email TEXT UNIQUE NOT NULL,
profile_pic TEXT NOT NULL
);