Guest User

Untitled

a guest
Oct 11th, 2015
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. +-------------+-----------------------------+-----------------------------------
  2. | Column | Type | Modifiers
  3. |-------------+-----------------------------+-----------------------------------
  4. | id | integer | not null default nextval('ourtable_id_seq'::regclass) |
  5. | uname | text | not null
  6. | essays | text |
  7. | questions | text |
  8. | details | text |
  9. | status | character(1) | not null default 'q'::bpchar
  10. | last_parsed | timestamp without time zone |
  11. | qstatus | character(1) | not null default 'q'::bpchar
  12. | media_wc | integer | not null default 0
  13. +-------------+-----------------------------+-----------------------------------
  14. Indexes:
  15. "ourtable_pkey" PRIMARY KEY, btree (id)
  16. "ourtable_uname_key" UNIQUE CONSTRAINT, btree (uname)
  17. "last_parsed_idx" btree (last_parsed)
  18. "qstatus_idx" btree (qstatus)
  19. "status_idx" btree (status)
Advertisement
Add Comment
Please, Sign In to add comment