diff options
| author | ckonstanski <kostcarl@isu.edu> | 2026-07-18 21:18:18 -0600 |
|---|---|---|
| committer | ckonstanski <kostcarl@isu.edu> | 2026-07-18 21:18:18 -0600 |
| commit | 08e435104c42751689553537b1f20ffb14b8dfcc (patch) | |
| tree | f83d8db1a02d4be448ab044d28fda7411470bd7c /sql/tables/resume.education.sql | |
initial commit
Diffstat (limited to 'sql/tables/resume.education.sql')
| -rw-r--r-- | sql/tables/resume.education.sql | 12 |
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 +); |
