diff options
| -rw-r--r-- | migrations/20220903093057_add-users-table.sql | 4 |
1 files 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 ); |
