feat(db): added role_id to users
This commit is contained in:
parent
8a24e0a726
commit
5fc9ce5bdd
1 changed files with 2 additions and 1 deletions
|
|
@ -204,7 +204,8 @@ $$
|
|||
jwt_iat timestamp without time zone NULL DEFAULT NULL,
|
||||
data jsonb NOT NULL DEFAULT '{}'::jsonb,
|
||||
weekly_report boolean NOT NULL DEFAULT TRUE,
|
||||
origin user_origin NULL DEFAULT NULL
|
||||
origin user_origin NULL DEFAULT NULL,
|
||||
role_id integer REFERENCES roles (role_id) ON DELETE SET NULL
|
||||
);
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue