Skip to content

Commit

Permalink
Add avatar field to user schema for OIDC avatars.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Oct 13, 2024
1 parent 834f541 commit 7c92b65
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,7 @@ CREATE TABLE users (
password TEXT NULL,
email TEXT NOT NULL UNIQUE,
name TEXT NOT NULL,
avatar TEXT NULL,
type user_type NOT NULL DEFAULT 'user',
role_id INTEGER NOT NULL REFERENCES user_roles(id) ON DELETE RESTRICT,
status user_status NOT NULL DEFAULT 'disabled',
Expand Down

0 comments on commit 7c92b65

Please sign in to comment.