summaryrefslogtreecommitdiff
path: root/sql/tables/resume.education.sql
diff options
context:
space:
mode:
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
+);