Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. CREATE TABLE failed_jobs (
  2. id SERIAL NOT NULL,
  3. connection text DEFAULT NULL,
  4. queue text DEFAULT NULL,
  5. payload text DEFAULT NULL,
  6. exception text DEFAULT NULL,
  7. failed_at timestamp(0) without time zone DEFAULT ('now'::text)::timestamp(0) with time zone NOT NULL
  8. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement