diff options
| author | ckonstanski <kostcarl@isu.edu> | 2026-07-20 21:09:54 -0600 |
|---|---|---|
| committer | ckonstanski <kostcarl@isu.edu> | 2026-07-20 21:09:54 -0600 |
| commit | 8ab94f4677f8d56655a45bb636917429dcddda24 (patch) | |
| tree | b8481a5b04eca19fca1056340e35f1d6665a4fbd /sql/tables/resume.contactinfo.sql | |
| parent | 9486b95432298bc89f6d7e4639721fb4e49879e0 (diff) | |
got contact info working
Diffstat (limited to 'sql/tables/resume.contactinfo.sql')
| -rw-r--r-- | sql/tables/resume.contactinfo.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/tables/resume.contactinfo.sql b/sql/tables/resume.contactinfo.sql index 9290da0..8523270 100644 --- a/sql/tables/resume.contactinfo.sql +++ b/sql/tables/resume.contactinfo.sql @@ -2,6 +2,7 @@ drop table resume.contactinfo cascade; create table resume.contactinfo ( id serial8 primary key, + user_id bigint not null references auth.users(id), address character varying(255) not null, city character varying(255) not null, state_id bigint not null references resume.states(id), |
