diff options
| author | Santo Cariotti <santo@dcariotti.me> | 2022-09-01 16:45:04 +0000 |
|---|---|---|
| committer | Santo Cariotti <santo@dcariotti.me> | 2022-09-01 16:45:04 +0000 |
| commit | ab23761e090b8ab6311a360eada7131f6663a3bf (patch) | |
| tree | b5a99bb4cfc811e45fc2e3680b4f8b1e944515eb /migrations/20220822142548_add-users-table.sql | |
Fork from m6-ie project
Diffstat (limited to 'migrations/20220822142548_add-users-table.sql')
| -rw-r--r-- | migrations/20220822142548_add-users-table.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/migrations/20220822142548_add-users-table.sql b/migrations/20220822142548_add-users-table.sql new file mode 100644 index 0000000..4798d7e --- /dev/null +++ b/migrations/20220822142548_add-users-table.sql @@ -0,0 +1,6 @@ +create table users ( + id serial unique, + email varchar(100) unique not null, + password varchar(100) not null, + is_staff boolean default false +); |
