diff options
Diffstat (limited to 'migrations/20220903093057_add-users-table.sql')
| -rw-r--r-- | migrations/20220903093057_add-users-table.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/migrations/20220903093057_add-users-table.sql b/migrations/20220903093057_add-users-table.sql new file mode 100644 index 0000000..0fb83c4 --- /dev/null +++ b/migrations/20220903093057_add-users-table.sql @@ -0,0 +1,7 @@ +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 +); |
