dr_groups.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE table PUBLIC "-//kamailio.org//DTD DBSchema V1.1//EN"
  3. "http://kamailio.org/pub/kamailio/dbschema/dtd/1.1/dbschema.dtd" [
  4. <!ENTITY % entities SYSTEM "entities.xml">
  5. %entities;
  6. ]>
  7. <table id="dr_groups" xmlns:db="http://docbook.org/ns/docbook">
  8. <name>dr_groups</name>
  9. <version>2</version>
  10. <type db="mysql">&MYSQL_TABLE_TYPE;</type>
  11. <description>
  12. <db:para>This table is used by the drouting module to store
  13. information about the routing groups (users mapped over groups).
  14. More information can be found at: &KAMAILIO_MOD_DOC;drouting.html.
  15. </db:para>
  16. </description>
  17. <column id="gwid">
  18. <name>id</name>
  19. <type>unsigned int</type>
  20. <size>&table_id_len;</size>
  21. <autoincrement/>
  22. <primary/>
  23. <type db="dbtext">int,auto</type>
  24. <description>Unique ID</description>
  25. </column>
  26. <column id="username">
  27. <name>username</name>
  28. <type>string</type>
  29. <size>64</size>
  30. <description>Username part of user</description>
  31. </column>
  32. <column id="domain">
  33. <name>domain</name>
  34. <type>string</type>
  35. <size>128</size>
  36. <default></default>
  37. <description>Domain part of user</description>
  38. </column>
  39. <column id="groupid">
  40. <name>groupid</name>
  41. <type>unsigned int</type>
  42. <size>11</size>
  43. <default>0</default>
  44. <description>The ID of the routing group the user belongs to.
  45. </description>
  46. </column>
  47. <column id="description">
  48. <name>description</name>
  49. <type>string</type>
  50. <size>128</size>
  51. <default></default>
  52. <description>Text description of the group/user</description>
  53. </column>
  54. </table>