summaryrefslogtreecommitdiff
path: root/sql/tables/resume.education.sql
diff options
context:
space:
mode:
authorckonstanski <kostcarl@isu.edu>2026-07-21 15:26:40 -0600
committerckonstanski <kostcarl@isu.edu>2026-07-21 15:26:40 -0600
commit51354fd19f76c2cbfd31542e9c072b86a90134f0 (patch)
tree01e60982cd467d266c70dab68bc3c3e5714b4d53 /sql/tables/resume.education.sql
parent05154d8591bc1d7f31b7d875e6086e81055288c4 (diff)
added education
Diffstat (limited to 'sql/tables/resume.education.sql')
-rw-r--r--sql/tables/resume.education.sql7
1 files changed, 4 insertions, 3 deletions
diff --git a/sql/tables/resume.education.sql b/sql/tables/resume.education.sql
index 638a50c..161dbfc 100644
--- a/sql/tables/resume.education.sql
+++ b/sql/tables/resume.education.sql
@@ -2,11 +2,12 @@ drop table resume.education cascade;
create table resume.education (
id serial8 primary key,
+ user_id bigint not null references auth.users(id),
school character varying(255) not null,
- start_date timestamp without time zone not null default now(),
- end_date timestamp without time zone not null default now(),
+ start_date character varying(255) not null,
+ end_date character varying(255) not null,
major character varying(255) not null,
- minor character varying(255) not null,
+ minor character varying(255),
degree character varying(255) not null,
progress character varying(255) not null
);