Advertisement
Proff_Ust

Untitled

Jan 16th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. grafanadb=# \d+ dashboard
  2. Table "public.dashboard"
  3. Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
  4. ------------+-----------------------------+-----------+----------+----------------------------------------+----------+--------------+-------------
  5. id | integer | | not null | nextval('dashboard_id_seq1'::regclass) | plain | |
  6. version | integer | | not null | | plain | |
  7. slug | character varying(189) | | not null | | extended | |
  8. title | character varying(189) | | not null | | extended | |
  9. data | text | | not null | | extended | |
  10. org_id | bigint | | not null | | plain | |
  11. created | timestamp without time zone | | not null | | plain | |
  12. updated | timestamp without time zone | | not null | | plain | |
  13. updated_by | integer | | | | plain | |
  14. created_by | integer | | | | plain | |
  15. gnet_id | bigint | | | | plain | |
  16. plugin_id | character varying(189) | | | | extended | |
  17. folder_id | bigint | | not null | 0 | plain | |
  18. is_folder | boolean | | not null | false | plain | |
  19. has_acl | boolean | | not null | false | plain | |
  20. uid | character varying(40) | | | | extended | |
  21. Indexes:
  22. "dashboard_pkey1" PRIMARY KEY, btree (id)
  23. "UQE_dashboard_org_id_folder_id_title" UNIQUE, btree (org_id, folder_id, title)
  24. "UQE_dashboard_org_id_uid" UNIQUE, btree (org_id, uid)
  25. "IDX_dashboard_gnet_id" btree (gnet_id)
  26. "IDX_dashboard_org_id" btree (org_id)
  27. "IDX_dashboard_org_id_plugin_id" btree (org_id, plugin_id)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement