From e6dbcbb42e7a4a973887acde633cc3ee233aad3e Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Tue, 6 Sep 2022 18:44:30 +0200 Subject: Fix uppercase on migration --- migrations/20220903093057_add-users-table.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migrations/20220903093057_add-users-table.sql b/migrations/20220903093057_add-users-table.sql index 0fb83c4..b55eae6 100644 --- a/migrations/20220903093057_add-users-table.sql +++ b/migrations/20220903093057_add-users-table.sql @@ -1,7 +1,7 @@ -CREATE TABLE USERS ( +CREATE TABLE users ( id SERIAL UNIQUE PRIMARY KEY, email VARCHAR(100) UNIQUE NOT NULL, username VARCHAR(100) UNIQUE NOT NULL, password VARCHAR(100) NOT NULL, - is_staff BOOLEAN DEFAULT FALSE + is_staff BOOLEAN DEFAULT false ); -- cgit v1.2.3-71-g8e6c