Fix SQL syntax error (#261)

This commit is contained in:
Zhixuan Lai 2024-03-14 14:22:05 -07:00 committed by GitHub
parent 9f2e068e39
commit c0cff02187
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,7 @@ async function seedUsers(client) {
CREATE TABLE IF NOT EXISTS users ( CREATE TABLE IF NOT EXISTS users (
id UUID DEFAULT uuid_generate_v4() PRIMARY KEY, id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,
email TEXT NOT NULL UNIQUE, email TEXT NOT NULL UNIQUE,
password TEXT NOT NULL password TEXT NOT NULL,
salt TEXT NOT NULL salt TEXT NOT NULL
); );
` `