Add about me

This commit is contained in:
xfarrow
2024-03-04 15:15:09 +01:00
parent 08623759cb
commit 3b5114dee0
6 changed files with 35 additions and 32 deletions

View File

@ -11,7 +11,8 @@ CREATE TABLE IF NOT EXISTS public."Person"
date_of_birth date,
available boolean,
enabled boolean NOT NULL DEFAULT false,
place_of_living character varying(128)
place_of_living character varying(128),
about_me character varying(4096)
)
TABLESPACE pg_default;