Skip to content

Commit

Permalink
updated sql migration for postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisnatali committed Feb 24, 2014
1 parent 12fa9ab commit 95eab72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrate_jobs.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
create table jobs_copy (
pid integer not null,
host varchar(64) not null,
start_time datetime not null,
end_time datetime,
start_time timestamp without time zone not null,
end_time timestamp without time zone,
primary key (pid, host, start_time)
);

Expand Down

0 comments on commit 95eab72

Please sign in to comment.