Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- +-------------+-----------------------------+-----------------------------------
- | Column | Type | Modifiers
- |-------------+-----------------------------+-----------------------------------
- | id | integer | not null default nextval('ourtable_id_seq'::regclass) |
- | uname | text | not null
- | essays | text |
- | questions | text |
- | details | text |
- | status | character(1) | not null default 'q'::bpchar
- | last_parsed | timestamp without time zone |
- | qstatus | character(1) | not null default 'q'::bpchar
- | media_wc | integer | not null default 0
- +-------------+-----------------------------+-----------------------------------
- Indexes:
- "ourtable_pkey" PRIMARY KEY, btree (id)
- "ourtable_uname_key" UNIQUE CONSTRAINT, btree (uname)
- "last_parsed_idx" btree (last_parsed)
- "qstatus_idx" btree (qstatus)
- "status_idx" btree (status)
Advertisement
Add Comment
Please, Sign In to add comment