diff options
Diffstat (limited to 'crates/users-service/migrations')
-rw-r--r-- | crates/users-service/migrations/20250726161947_profile.sql | 5 |
1 files changed, 3 insertions, 2 deletions
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') |