Add projects

This commit is contained in:
2022-02-14 01:25:36 +01:00
parent 3e843d429a
commit cb0917d916
14 changed files with 262 additions and 23 deletions

View File

@@ -1,9 +1,10 @@
create table users(
id serial primary key,
email varchar(320) not null,
password_hash varchar(256) not null
create table sctl_user
(
id int GENERATED BY DEFAULT AS IDENTITY primary key,
email varchar(320) not null,
password_hash varchar(256) not null
);
---- create above / drop below ----
drop table users;
drop table sctl_user;