diff options
author | Aspen Smith <root@gws.fyi> | 2024-04-13T14·31-0400 |
---|---|---|
committer | aspen <root@gws.fyi> | 2024-04-19T18·42+0000 |
commit | 413441e2f2266db58094bbf305ba736e5586708f (patch) | |
tree | e3af48dba4c2e4644ef317c72e987e02243c5cfb /web/panettone/src/packages.lisp | |
parent | 594600cd4a253d652ff0dddd914c4fba4465a5e6 (diff) |
feat(web/panettone): Create users table r/7963
Create a (currently unused) table to store information about users. I'll be manually migrating over all the information about users into this table, then will make a subsequent CL to make the rest of the tables foreign-key into this table Change-Id: I1b1c4b50c4a61326df3382809f701947a2caf536 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11411 Autosubmit: aspen <root@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'web/panettone/src/packages.lisp')
-rw-r--r-- | web/panettone/src/packages.lisp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/panettone/src/packages.lisp b/web/panettone/src/packages.lisp index cc53be6cb02f..8e77c0ff2b5f 100644 --- a/web/panettone/src/packages.lisp +++ b/web/panettone/src/packages.lisp @@ -42,6 +42,11 @@ :migrate :*pg-spec* + :create-table-if-not-exists + + :user + :sub :username :email + :user-settings :user-dn :enable-email-notifications-p :settings-for-user :update-user-settings :enable-email-notifications |