database.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <database>
  3. <name>*dbname*</name>
  4. <create>true</create>
  5. <overwrite>false</overwrite>
  6. <charset>latin1</charset>
  7. <table>
  8. <name>*dbprefix*gallery_albums</name>
  9. <declaration>
  10. <field>
  11. <name>album_id</name>
  12. <type>integer</type>
  13. <default>0</default>
  14. <notnull>true</notnull>
  15. <autoincrement>1</autoincrement>
  16. <length>4</length>
  17. </field>
  18. <field>
  19. <name>uid_owner</name>
  20. <type>text</type>
  21. <notnull>true</notnull>
  22. <length>64</length>
  23. </field>
  24. <field>
  25. <name>album_name</name>
  26. <type>text</type>
  27. <notnull>true</notnull>
  28. <length>100</length>
  29. </field>
  30. <field>
  31. <name>album_path</name>
  32. <type>text</type>
  33. <notnull>true</notnull>
  34. <length>100</length>
  35. </field>
  36. <field>
  37. <name>parent_path</name>
  38. <type>text</type>
  39. <notnull>true</notnull>
  40. <length>100</length>
  41. </field>
  42. </declaration>
  43. </table>
  44. <table>
  45. <name>*dbprefix*gallery_photos</name>
  46. <declaration>
  47. <field>
  48. <name>photo_id</name>
  49. <type>integer</type>
  50. <default>0</default>
  51. <notnull>true</notnull>
  52. <autoincrement>1</autoincrement>
  53. <length>4</length>
  54. </field>
  55. <field>
  56. <name>album_id</name>
  57. <type>integer</type>
  58. <default>0</default>
  59. <notnull>true</notnull>
  60. <length>4</length>
  61. </field>
  62. <field>
  63. <name>file_path</name>
  64. <type>text</type>
  65. <notnull>true</notnull>
  66. <length>100</length>
  67. </field>
  68. </declaration>
  69. </table>
  70. <table>
  71. <name>*dbprefix*gallery_sharing</name>
  72. <declaration>
  73. <field>
  74. <name>token</name>
  75. <type>text</type>
  76. <notnull>true</notnull>
  77. <length>64</length>
  78. </field>
  79. <field>
  80. <name>gallery_id</name>
  81. <type>integer</type>
  82. <default>0</default>
  83. <notnull>true</notnull>
  84. <length>4</length>
  85. </field>
  86. <field>
  87. <name>recursive</name>
  88. <type>integer</type>
  89. <notnull>true</notnull>
  90. <length>1</length>
  91. </field>
  92. </declaration>
  93. </table>
  94. </database>