Fixed file upload

This commit is contained in:
Benjamin Sherriff
2023-10-24 08:42:21 -04:00
parent f3eff8e310
commit ece4154b4e
7 changed files with 41 additions and 30 deletions

View File

@@ -6,6 +6,6 @@ CREATE TABLE IF NOT EXISTS users (
last_name TEXT NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW(),
profile TEXT,
profile_picture TEXT,
verified BOOLEAN NOT NULL DEFAULT FALSE
);