summaryrefslogtreecommitdiff
path: root/sql/tables/resume.education.sql
diff options
context:
space:
mode:
authorckonstanski <kostcarl@isu.edu>2026-07-18 21:18:18 -0600
committerckonstanski <kostcarl@isu.edu>2026-07-18 21:18:18 -0600
commit08e435104c42751689553537b1f20ffb14b8dfcc (patch)
treef83d8db1a02d4be448ab044d28fda7411470bd7c /sql/tables/resume.education.sql
initial commit
Diffstat (limited to 'sql/tables/resume.education.sql')
-rw-r--r--sql/tables/resume.education.sql12
1 files changed, 12 insertions, 0 deletions
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
+);