Initial commit

This commit is contained in:
2025-12-29 16:27:01 +00:00
committed by Siteworx Pro Gitea
commit 23f2b6432b
147 changed files with 14731 additions and 0 deletions

View File

@@ -0,0 +1 @@
drop table if exists users;

View File

@@ -0,0 +1,13 @@
create table users
(
id uuid default gen_random_uuid()
constraint users_pk
primary key,
first_name varchar not null,
last_name varchar not null,
email varchar not null
constraint users_email_key
unique,
password varchar not null,
created_at timestamp default now()
);