(feat) Users can now be created.
Having issues with fetching users; switch to sqlx? Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
parent
cf80d4b70d
commit
f267d6b285
7 changed files with 470 additions and 42 deletions
|
|
@ -12,6 +12,7 @@ CREATE TABLE users (
|
|||
pass VARCHAR NOT NULL,
|
||||
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
||||
updated_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
||||
main_fedi TEXT
|
||||
main_fedi TEXT,
|
||||
UNIQUE(username, epost)
|
||||
);
|
||||
SELECT diesel_manage_updated_at('users');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue