[ Index ] |
|
Code source de Horde 3.1.3 |
1 <?xml version="1.0" encoding="ISO-8859-1" ?> 2 <database> 3 4 <name><variable>name</variable></name> 5 <create><variable>create</variable></create> 6 7 <table> 8 9 <name>horde_datatree</name> 10 11 <declaration> 12 13 <field> 14 <name>datatree_id</name> 15 <type>integer</type> 16 <notnull>true</notnull> 17 </field> 18 19 <field> 20 <name>group_uid</name> 21 <type>text</type> 22 <length>255</length> 23 <notnull>true</notnull> 24 </field> 25 26 <field> 27 <name>user_uid</name> 28 <type>text</type> 29 <length>255</length> 30 <notnull>true</notnull> 31 </field> 32 33 <field> 34 <name>datatree_name</name> 35 <type>text</type> 36 <length>255</length> 37 <notnull>true</notnull> 38 </field> 39 40 <field> 41 <name>datatree_parents</name> 42 <type>text</type> 43 <length>255</length> 44 <notnull>true</notnull> 45 </field> 46 47 <field> 48 <name>datatree_order</name> 49 <type>integer</type> 50 </field> 51 52 <field> 53 <name>datatree_data</name> 54 <type>clob</type> 55 </field> 56 57 <field> 58 <name>datatree_serialized</name> 59 <type>integer</type> 60 <length>2</length> 61 <notnull>true</notnull> 62 </field> 63 64 <index> 65 <name>datatree_datatree_name</name> 66 <field> 67 <name>datatree_name</name> 68 </field> 69 </index> 70 71 <index> 72 <name>datatree_group</name> 73 <field> 74 <name>group_uid</name> 75 </field> 76 </index> 77 78 <index> 79 <name>datatree_user</name> 80 <field> 81 <name>user_uid</name> 82 </field> 83 </index> 84 85 <index> 86 <name>datatree_serialized</name> 87 <field> 88 <name>datatree_serialized</name> 89 </field> 90 </index> 91 92 <index> 93 <name>primary</name> 94 <primary>true</primary> 95 <field> 96 <name>datatree_id</name> 97 </field> 98 </index> 99 100 </declaration> 101 102 </table> 103 104 <table> 105 106 <name>horde_datatree_attributes</name> 107 108 <declaration> 109 110 <field> 111 <name>datatree_id</name> 112 <type>integer</type> 113 <notnull>true</notnull> 114 </field> 115 116 <field> 117 <name>attribute_name</name> 118 <type>text</type> 119 <length>255</length> 120 <notnull>true</notnull> 121 </field> 122 123 <field> 124 <name>attribute_key</name> 125 <type>text</type> 126 <length>255</length> 127 <notnull>true</notnull> 128 </field> 129 130 <field> 131 <name>attribute_value</name> 132 <type>clob</type> 133 </field> 134 135 <index> 136 <name>datatree_attribute</name> 137 <field> 138 <name>datatree_id</name> 139 </field> 140 </index> 141 142 <index> 143 <name>datatree_attribute_name</name> 144 <field> 145 <name>attribute_name</name> 146 </field> 147 </index> 148 149 <index> 150 <name>datatree_attribute_key</name> 151 <field> 152 <name>attribute_key</name> 153 </field> 154 </index> 155 156 </declaration> 157 158 </table> 159 160 <table> 161 162 <name>horde_histories</name> 163 164 <declaration> 165 166 <field> 167 <name>history_id</name> 168 <type>integer</type> 169 <notnull>true</notnull> 170 </field> 171 172 <field> 173 <name>object_uid</name> 174 <type>text</type> 175 <length>255</length> 176 <notnull>true</notnull> 177 </field> 178 179 <field> 180 <name>history_action</name> 181 <type>text</type> 182 <length>32</length> 183 <notnull>true</notnull> 184 </field> 185 186 <field> 187 <name>history_ts</name> 188 <type>integer</type> 189 <notnull>true</notnull> 190 </field> 191 192 <field> 193 <name>history_desc</name> 194 <type>clob</type> 195 </field> 196 197 <field> 198 <name>history_who</name> 199 <type>text</type> 200 <length>255</length> 201 </field> 202 203 <field> 204 <name>history_extra</name> 205 <type>clob</type> 206 </field> 207 208 <index> 209 <name>history_action</name> 210 <field> 211 <name>history_action</name> 212 </field> 213 </index> 214 215 <index> 216 <name>history_ts</name> 217 <field> 218 <name>history_ts</name> 219 </field> 220 </index> 221 222 <index> 223 <name>history_uid</name> 224 <field> 225 <name>object_uid</name> 226 </field> 227 </index> 228 229 <index> 230 <name>primary</name> 231 <primary>true</primary> 232 <field> 233 <name>history_id</name> 234 </field> 235 </index> 236 237 </declaration> 238 239 </table> 240 241 <table> 242 243 <name>horde_prefs</name> 244 245 <declaration> 246 247 <field> 248 <name>pref_uid</name> 249 <type>text</type> 250 <length>200</length> 251 <notnull>true</notnull> 252 </field> 253 254 <field> 255 <name>pref_scope</name> 256 <type>text</type> 257 <length>16</length> 258 <notnull>true</notnull> 259 </field> 260 261 <field> 262 <name>pref_name</name> 263 <type>text</type> 264 <length>32</length> 265 <notnull>true</notnull> 266 </field> 267 268 <field> 269 <name>pref_value</name> 270 <type>clob</type> 271 </field> 272 273 <index> 274 <name>primary</name> 275 <primary>true</primary> 276 <field> 277 <name>pref_uid</name> 278 </field> 279 <field> 280 <name>pref_scope</name> 281 </field> 282 <field> 283 <name>pref_name</name> 284 </field> 285 </index> 286 287 <index> 288 <name>pref_uid</name> 289 <field> 290 <name>pref_uid</name> 291 </field> 292 </index> 293 294 <index> 295 <name>pref_scope</name> 296 <field> 297 <name>pref_scope</name> 298 </field> 299 </index> 300 301 </declaration> 302 303 </table> 304 305 <table> 306 307 <name>horde_sessionhandler</name> 308 309 <declaration> 310 311 <field> 312 <name>session_id</name> 313 <type>text</type> 314 <length>32</length> 315 <notnull>true</notnull> 316 </field> 317 318 <field> 319 <name>session_lastmodified</name> 320 <type>integer</type> 321 <notnull>true</notnull> 322 </field> 323 324 <field> 325 <name>session_data</name> 326 <type>blob</type> 327 </field> 328 329 <index> 330 <name>primary</name> 331 <primary>true</primary> 332 <field> 333 <name>session_id</name> 334 </field> 335 </index> 336 337 </declaration> 338 339 </table> 340 341 <table> 342 343 <name>horde_tokens</name> 344 345 <declaration> 346 347 <field> 348 <name>token_address</name> 349 <type>text</type> 350 <length>100</length> 351 <notnull>true</notnull> 352 </field> 353 354 <field> 355 <name>token_id</name> 356 <type>text</type> 357 <length>32</length> 358 <notnull>true</notnull> 359 </field> 360 361 <field> 362 <name>token_timestamp</name> 363 <type>integer</type> 364 <notnull>true</notnull> 365 </field> 366 367 <index> 368 <name>primary</name> 369 <primary>true</primary> 370 <field> 371 <name>token_address</name> 372 </field> 373 <field> 374 <name>token_id</name> 375 </field> 376 </index> 377 378 </declaration> 379 380 </table> 381 382 <table> 383 384 <name>horde_users</name> 385 386 <declaration> 387 388 <field> 389 <name>user_uid</name> 390 <type>text</type> 391 <length>255</length> 392 <notnull>true</notnull> 393 </field> 394 395 <field> 396 <name>user_pass</name> 397 <type>text</type> 398 <length>255</length> 399 <notnull>true</notnull> 400 </field> 401 402 <field> 403 <name>user_soft_expiration_date</name> 404 <type>integer</type> 405 </field> 406 407 <field> 408 <name>user_hard_expiration_date</name> 409 <type>integer</type> 410 </field> 411 412 <index> 413 <name>primary</name> 414 <primary>true</primary> 415 <field> 416 <name>user_uid</name> 417 </field> 418 </index> 419 420 </declaration> 421 422 </table> 423 424 <table> 425 426 <name>horde_vfs</name> 427 428 <declaration> 429 430 <field> 431 <name>vfs_id</name> 432 <type>integer</type> 433 <notnull>true</notnull> 434 </field> 435 436 <field> 437 <name>vfs_type</name> 438 <type>integer</type> 439 <length>1</length> 440 <notnull>true</notnull> 441 </field> 442 443 <field> 444 <name>vfs_path</name> 445 <type>text</type> 446 <length>255</length> 447 <notnull>true</notnull> 448 </field> 449 450 <field> 451 <name>vfs_name</name> 452 <type>text</type> 453 <length>255</length> 454 <notnull>true</notnull> 455 </field> 456 457 <field> 458 <name>vfs_modified</name> 459 <type>integer</type> 460 <notnull>true</notnull> 461 </field> 462 463 <field> 464 <name>vfs_owner</name> 465 <type>text</type> 466 <length>255</length> 467 <notnull>true</notnull> 468 </field> 469 470 <field> 471 <name>vfs_data</name> 472 <type>blob</type> 473 </field> 474 475 <index> 476 <name>primary</name> 477 <primary>true</primary> 478 <field> 479 <name>vfs_id</name> 480 </field> 481 </index> 482 483 <index> 484 <name>vfs_path</name> 485 <field> 486 <name>vfs_path</name> 487 </field> 488 </index> 489 490 <index> 491 <name>vfs_name</name> 492 <field> 493 <name>vfs_name</name> 494 </field> 495 </index> 496 497 </declaration> 498 499 </table> 500 501 </database>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 25 18:01:28 2007 | par Balluche grâce à PHPXref 0.7 |