Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. Column | Type | Modifiers
  2. id | bigint | not null default nextval('user_location_id_seq'::regclass)
  3. user_id | integer | not null
  4. location | geography(Point,4326) |
  5. accuracy | smallint |
  6. datetime | timestamp with time zone | default now()
  7. Indexes:
  8. "users_locations_pkey" PRIMARY KEY, btree (id)
  9. "user_location_datetime_desc_idx" btree (datetime DESC)
  10. "user_location_user_id_idx" btree (user_id)
  11. "users_locations_gix" gist (location)
  12.  
  13. Foreign-key constraints:
  14. "users_locations_user_id_fkey" FOREIGN KEY (user_id) REFERENCES "user"(id) ON DELETE
  15. CASCADE
  16. Referenced by: ...
  17.  
  18. The connection to the server was lost. Attempting reset: Failed.
  19. !>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement