Advertisement
Guest User

Untitled

a guest
Jun 14th, 2017
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.             TABLE "public.im_fs_folders"
  2.      COLUMN     |          TYPE          | Modifiers
  3. ----------------+------------------------+-----------
  4.  folder_id      | INTEGER                | NOT null
  5.  object_id      | INTEGER                |
  6.  path           | CHARACTER varying(500) | NOT null
  7.  folder_type_id | INTEGER                |
  8.  description    | CHARACTER varying(500) |
  9. Indexes:
  10.     "im_fs_folders_pk" PRIMARY KEY, btree (folder_id)
  11.     "im_fs_folders_un" UNIQUE, btree (object_id, path)
  12.     "im_fs_folders_object_idx" btree (object_id)
  13. Foreign-key constraints:
  14.     "im_fs_folder_type_fk" FOREIGN KEY (folder_type_id) REFERENCES im_categories(category_id)
  15.     "im_fs_folder_object_fk" FOREIGN KEY (object_id) REFERENCES acs_objects(object_id)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement