Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. Table "public.attachments"
  2. Column | Type | Modifiers
  3. -------------------+-----------------------------+----------------------------------------------------------
  4. id | integer | not null default nextval('attachments_id_seq'::regclass)
  5. group | character varying | not null
  6. original_filename | character varying | not null
  7. public_id | character varying | not null
  8. width | integer |
  9. height | integer |
  10. format | character varying |
  11. resource_type | character varying | not null
  12. attachable_id | integer |
  13. attachable_type | character varying |
  14. created_at | timestamp without time zone | not null
  15. updated_at | timestamp without time zone | not null
  16. integration_id | integer |
  17. etag | character varying |
  18. sync_id | character varying |
  19. remote_url | character varying |
  20. uploader | character varying |
  21. Indexes:
  22. "attachments_pkey" PRIMARY KEY, btree (id)
  23. "index_attachments_on_attachable_type_and_attachable_id" btree (attachable_type, attachable_id)
  24. "index_attachments_on_integration_id" btree (integration_id)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement