From 92620ba85d729d27ffe4d141149ba9b82e543d74 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Mon, 28 Jul 2025 08:48:31 +0200 Subject: feat(users): create user --- crates/users-service/migrations/20250726161947_profile.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crates/users-service/migrations') diff --git a/crates/users-service/migrations/20250726161947_profile.sql b/crates/users-service/migrations/20250726161947_profile.sql index 15822c8..1fcfe68 100644 --- a/crates/users-service/migrations/20250726161947_profile.sql +++ b/crates/users-service/migrations/20250726161947_profile.sql @@ -2,9 +2,10 @@ create table profile ( id text primary key, username varchar(30) not null, inbox text not null, - outbox text, + outbox text not null, local boolean not null, - avatar_url text, + avatar text, + email text, description text, user_type text not null check ( user_type IN ('PERSON', 'APPLICATION', 'GROUP', 'ORGANIZATION', 'SERVICE') -- cgit v1.2.3