summaryrefslogtreecommitdiff
path: root/sql/tables
diff options
context:
space:
mode:
Diffstat (limited to 'sql/tables')
-rw-r--r--sql/tables/resume.skill.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/tables/resume.skill.sql b/sql/tables/resume.skill.sql
index 5085cf1..d7ad218 100644
--- a/sql/tables/resume.skill.sql
+++ b/sql/tables/resume.skill.sql
@@ -2,5 +2,6 @@ drop table resume.skill cascade;
create table resume.skill (
id serial8 primary key,
+ user_id bigint not null references auth.users(id),
skill text not null
);