From 08e435104c42751689553537b1f20ffb14b8dfcc Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Sat, 18 Jul 2026 21:18:18 -0600 Subject: initial commit --- sql/tables/resume.education.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sql/tables/resume.education.sql (limited to 'sql/tables/resume.education.sql') diff --git a/sql/tables/resume.education.sql b/sql/tables/resume.education.sql new file mode 100644 index 0000000..638a50c --- /dev/null +++ b/sql/tables/resume.education.sql @@ -0,0 +1,12 @@ +drop table resume.education cascade; + +create table resume.education ( + id serial8 primary key, + 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(), + major character varying(255) not null, + minor character varying(255) not null, + degree character varying(255) not null, + progress character varying(255) not null +); -- cgit v1.3