They came from... Behind

This commit is contained in:
2025-04-29 12:13:45 -04:00
parent b90226d1a5
commit 3d94baf410
2 changed files with 14 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()
);