Cleaning old project.

This commit is contained in:
Tomasz Półgrabia 2021-01-05 13:01:57 +01:00
parent 0bcbb686dc
commit 9943b75618
4 changed files with 50 additions and 12 deletions

View file

@ -0,0 +1,6 @@
create table users
(
id serial not null primary key,
first_name text not null,
user_name varchar(256) not null
);