summaryrefslogtreecommitdiff
path: root/sql/tables/resume.job.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.job.sql
initial commit
Diffstat (limited to 'sql/tables/resume.job.sql')
-rw-r--r--sql/tables/resume.job.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/tables/resume.job.sql b/sql/tables/resume.job.sql
new file mode 100644
index 0000000..6e1dc3d
--- /dev/null
+++ b/sql/tables/resume.job.sql
@@ -0,0 +1,10 @@
+drop table resume.job cascade;
+
+create table resume.job (
+ id serial8 primary key,
+ company character varying(255) not null,
+ location 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(),
+ overview text
+);