[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 <?php 2 // This array contains the database schema 3 $schema = array ( 4 'ezapprove_items' => 5 array ( 6 'name' => 'ezapprove_items', 7 'fields' => 8 array ( 9 'collaboration_id' => 10 array ( 11 'length' => 11, 12 'type' => 'int', 13 'not_null' => '1', 14 'default' => 0, 15 ), 16 'id' => 17 array ( 18 'type' => 'auto_increment', 19 'default' => false, 20 ), 21 'workflow_process_id' => 22 array ( 23 'length' => 11, 24 'type' => 'int', 25 'not_null' => '1', 26 'default' => 0, 27 ), 28 ), 29 'indexes' => 30 array ( 31 'PRIMARY' => 32 array ( 33 'type' => 'primary', 34 'fields' => 35 array ( 36 0 => 'id', 37 ), 38 ), 39 ), 40 ), 41 'ezbasket' => 42 array ( 43 'name' => 'ezbasket', 44 'fields' => 45 array ( 46 'id' => 47 array ( 48 'type' => 'auto_increment', 49 'default' => false, 50 ), 51 'order_id' => 52 array ( 53 'length' => 11, 54 'type' => 'int', 55 'not_null' => '1', 56 'default' => 0, 57 ), 58 'productcollection_id' => 59 array ( 60 'length' => 11, 61 'type' => 'int', 62 'not_null' => '1', 63 'default' => 0, 64 ), 65 'session_id' => 66 array ( 67 'length' => 255, 68 'type' => 'varchar', 69 'not_null' => '1', 70 'default' => '', 71 ), 72 ), 73 'indexes' => 74 array ( 75 'PRIMARY' => 76 array ( 77 'type' => 'primary', 78 'fields' => 79 array ( 80 0 => 'id', 81 ), 82 ), 83 'ezbasket_session_id' => 84 array ( 85 'type' => 'non-unique', 86 'fields' => 87 array ( 88 0 => 'session_id', 89 ), 90 ), 91 ), 92 ), 93 'ezbinaryfile' => 94 array ( 95 'name' => 'ezbinaryfile', 96 'fields' => 97 array ( 98 'contentobject_attribute_id' => 99 array ( 100 'length' => 11, 101 'type' => 'int', 102 'not_null' => '1', 103 'default' => 0, 104 ), 105 'download_count' => 106 array ( 107 'length' => 11, 108 'type' => 'int', 109 'not_null' => '1', 110 'default' => 0, 111 ), 112 'filename' => 113 array ( 114 'length' => 255, 115 'type' => 'varchar', 116 'not_null' => '1', 117 'default' => '', 118 ), 119 'mime_type' => 120 array ( 121 'length' => 50, 122 'type' => 'varchar', 123 'not_null' => '1', 124 'default' => '', 125 ), 126 'original_filename' => 127 array ( 128 'length' => 255, 129 'type' => 'varchar', 130 'not_null' => '1', 131 'default' => '', 132 ), 133 'version' => 134 array ( 135 'length' => 11, 136 'type' => 'int', 137 'not_null' => '1', 138 'default' => 0, 139 ), 140 ), 141 'indexes' => 142 array ( 143 'PRIMARY' => 144 array ( 145 'type' => 'primary', 146 'fields' => 147 array ( 148 0 => 'contentobject_attribute_id', 149 1 => 'version', 150 ), 151 ), 152 ), 153 ), 154 'ezcollab_group' => 155 array ( 156 'name' => 'ezcollab_group', 157 'fields' => 158 array ( 159 'created' => 160 array ( 161 'length' => 11, 162 'type' => 'int', 163 'not_null' => '1', 164 'default' => 0, 165 ), 166 'depth' => 167 array ( 168 'length' => 11, 169 'type' => 'int', 170 'not_null' => '1', 171 'default' => 0, 172 ), 173 'id' => 174 array ( 175 'type' => 'auto_increment', 176 'default' => false, 177 ), 178 'is_open' => 179 array ( 180 'length' => 11, 181 'type' => 'int', 182 'not_null' => '1', 183 'default' => 1, 184 ), 185 'modified' => 186 array ( 187 'length' => 11, 188 'type' => 'int', 189 'not_null' => '1', 190 'default' => 0, 191 ), 192 'parent_group_id' => 193 array ( 194 'length' => 11, 195 'type' => 'int', 196 'not_null' => '1', 197 'default' => 0, 198 ), 199 'path_string' => 200 array ( 201 'length' => 255, 202 'type' => 'varchar', 203 'not_null' => '1', 204 'default' => '', 205 ), 206 'priority' => 207 array ( 208 'length' => 11, 209 'type' => 'int', 210 'not_null' => '1', 211 'default' => 0, 212 ), 213 'title' => 214 array ( 215 'length' => 255, 216 'type' => 'varchar', 217 'not_null' => '1', 218 'default' => '', 219 ), 220 'user_id' => 221 array ( 222 'length' => 11, 223 'type' => 'int', 224 'not_null' => '1', 225 'default' => 0, 226 ), 227 ), 228 'indexes' => 229 array ( 230 'PRIMARY' => 231 array ( 232 'type' => 'primary', 233 'fields' => 234 array ( 235 0 => 'id', 236 ), 237 ), 238 'ezcollab_group_depth' => 239 array ( 240 'type' => 'non-unique', 241 'fields' => 242 array ( 243 0 => 'depth', 244 ), 245 ), 246 'ezcollab_group_path' => 247 array ( 248 'type' => 'non-unique', 249 'fields' => 250 array ( 251 0 => 'path_string', 252 ), 253 ), 254 ), 255 ), 256 'ezcollab_item' => 257 array ( 258 'name' => 'ezcollab_item', 259 'fields' => 260 array ( 261 'created' => 262 array ( 263 'length' => 11, 264 'type' => 'int', 265 'not_null' => '1', 266 'default' => 0, 267 ), 268 'creator_id' => 269 array ( 270 'length' => 11, 271 'type' => 'int', 272 'not_null' => '1', 273 'default' => 0, 274 ), 275 'data_float1' => 276 array ( 277 'type' => 'float', 278 'not_null' => '1', 279 'default' => 0, 280 ), 281 'data_float2' => 282 array ( 283 'type' => 'float', 284 'not_null' => '1', 285 'default' => 0, 286 ), 287 'data_float3' => 288 array ( 289 'type' => 'float', 290 'not_null' => '1', 291 'default' => 0, 292 ), 293 'data_int1' => 294 array ( 295 'length' => 11, 296 'type' => 'int', 297 'not_null' => '1', 298 'default' => 0, 299 ), 300 'data_int2' => 301 array ( 302 'length' => 11, 303 'type' => 'int', 304 'not_null' => '1', 305 'default' => 0, 306 ), 307 'data_int3' => 308 array ( 309 'length' => 11, 310 'type' => 'int', 311 'not_null' => '1', 312 'default' => 0, 313 ), 314 'data_text1' => 315 array ( 316 'type' => 'longtext', 317 'not_null' => '1', 318 'default' => false, 319 ), 320 'data_text2' => 321 array ( 322 'type' => 'longtext', 323 'not_null' => '1', 324 'default' => false, 325 ), 326 'data_text3' => 327 array ( 328 'type' => 'longtext', 329 'not_null' => '1', 330 'default' => false, 331 ), 332 'id' => 333 array ( 334 'type' => 'auto_increment', 335 'default' => false, 336 ), 337 'modified' => 338 array ( 339 'length' => 11, 340 'type' => 'int', 341 'not_null' => '1', 342 'default' => 0, 343 ), 344 'status' => 345 array ( 346 'length' => 11, 347 'type' => 'int', 348 'not_null' => '1', 349 'default' => 1, 350 ), 351 'type_identifier' => 352 array ( 353 'length' => 40, 354 'type' => 'varchar', 355 'not_null' => '1', 356 'default' => '', 357 ), 358 ), 359 'indexes' => 360 array ( 361 'PRIMARY' => 362 array ( 363 'type' => 'primary', 364 'fields' => 365 array ( 366 0 => 'id', 367 ), 368 ), 369 ), 370 ), 371 'ezcollab_item_group_link' => 372 array ( 373 'name' => 'ezcollab_item_group_link', 374 'fields' => 375 array ( 376 'collaboration_id' => 377 array ( 378 'length' => 11, 379 'type' => 'int', 380 'not_null' => '1', 381 'default' => 0, 382 ), 383 'created' => 384 array ( 385 'length' => 11, 386 'type' => 'int', 387 'not_null' => '1', 388 'default' => 0, 389 ), 390 'group_id' => 391 array ( 392 'length' => 11, 393 'type' => 'int', 394 'not_null' => '1', 395 'default' => 0, 396 ), 397 'is_active' => 398 array ( 399 'length' => 11, 400 'type' => 'int', 401 'not_null' => '1', 402 'default' => 1, 403 ), 404 'is_read' => 405 array ( 406 'length' => 11, 407 'type' => 'int', 408 'not_null' => '1', 409 'default' => 0, 410 ), 411 'last_read' => 412 array ( 413 'length' => 11, 414 'type' => 'int', 415 'not_null' => '1', 416 'default' => 0, 417 ), 418 'modified' => 419 array ( 420 'length' => 11, 421 'type' => 'int', 422 'not_null' => '1', 423 'default' => 0, 424 ), 425 'user_id' => 426 array ( 427 'length' => 11, 428 'type' => 'int', 429 'not_null' => '1', 430 'default' => 0, 431 ), 432 ), 433 'indexes' => 434 array ( 435 'PRIMARY' => 436 array ( 437 'type' => 'primary', 438 'fields' => 439 array ( 440 0 => 'collaboration_id', 441 1 => 'group_id', 442 2 => 'user_id', 443 ), 444 ), 445 ), 446 ), 447 'ezcollab_item_message_link' => 448 array ( 449 'name' => 'ezcollab_item_message_link', 450 'fields' => 451 array ( 452 'collaboration_id' => 453 array ( 454 'length' => 11, 455 'type' => 'int', 456 'not_null' => '1', 457 'default' => 0, 458 ), 459 'created' => 460 array ( 461 'length' => 11, 462 'type' => 'int', 463 'not_null' => '1', 464 'default' => 0, 465 ), 466 'id' => 467 array ( 468 'type' => 'auto_increment', 469 'default' => false, 470 ), 471 'message_id' => 472 array ( 473 'length' => 11, 474 'type' => 'int', 475 'not_null' => '1', 476 'default' => 0, 477 ), 478 'message_type' => 479 array ( 480 'length' => 11, 481 'type' => 'int', 482 'not_null' => '1', 483 'default' => 0, 484 ), 485 'modified' => 486 array ( 487 'length' => 11, 488 'type' => 'int', 489 'not_null' => '1', 490 'default' => 0, 491 ), 492 'participant_id' => 493 array ( 494 'length' => 11, 495 'type' => 'int', 496 'not_null' => '1', 497 'default' => 0, 498 ), 499 ), 500 'indexes' => 501 array ( 502 'PRIMARY' => 503 array ( 504 'type' => 'primary', 505 'fields' => 506 array ( 507 0 => 'id', 508 ), 509 ), 510 ), 511 ), 512 'ezcollab_item_participant_link' => 513 array ( 514 'name' => 'ezcollab_item_participant_link', 515 'fields' => 516 array ( 517 'collaboration_id' => 518 array ( 519 'length' => 11, 520 'type' => 'int', 521 'not_null' => '1', 522 'default' => 0, 523 ), 524 'created' => 525 array ( 526 'length' => 11, 527 'type' => 'int', 528 'not_null' => '1', 529 'default' => 0, 530 ), 531 'is_active' => 532 array ( 533 'length' => 11, 534 'type' => 'int', 535 'not_null' => '1', 536 'default' => 1, 537 ), 538 'is_read' => 539 array ( 540 'length' => 11, 541 'type' => 'int', 542 'not_null' => '1', 543 'default' => 0, 544 ), 545 'last_read' => 546 array ( 547 'length' => 11, 548 'type' => 'int', 549 'not_null' => '1', 550 'default' => 0, 551 ), 552 'modified' => 553 array ( 554 'length' => 11, 555 'type' => 'int', 556 'not_null' => '1', 557 'default' => 0, 558 ), 559 'participant_id' => 560 array ( 561 'length' => 11, 562 'type' => 'int', 563 'not_null' => '1', 564 'default' => 0, 565 ), 566 'participant_role' => 567 array ( 568 'length' => 11, 569 'type' => 'int', 570 'not_null' => '1', 571 'default' => 1, 572 ), 573 'participant_type' => 574 array ( 575 'length' => 11, 576 'type' => 'int', 577 'not_null' => '1', 578 'default' => 1, 579 ), 580 ), 581 'indexes' => 582 array ( 583 'PRIMARY' => 584 array ( 585 'type' => 'primary', 586 'fields' => 587 array ( 588 0 => 'collaboration_id', 589 1 => 'participant_id', 590 ), 591 ), 592 ), 593 ), 594 'ezcollab_item_status' => 595 array ( 596 'name' => 'ezcollab_item_status', 597 'fields' => 598 array ( 599 'collaboration_id' => 600 array ( 601 'length' => 11, 602 'type' => 'int', 603 'not_null' => '1', 604 'default' => 0, 605 ), 606 'is_active' => 607 array ( 608 'length' => 11, 609 'type' => 'int', 610 'not_null' => '1', 611 'default' => 1, 612 ), 613 'is_read' => 614 array ( 615 'length' => 11, 616 'type' => 'int', 617 'not_null' => '1', 618 'default' => 0, 619 ), 620 'last_read' => 621 array ( 622 'length' => 11, 623 'type' => 'int', 624 'not_null' => '1', 625 'default' => 0, 626 ), 627 'user_id' => 628 array ( 629 'length' => 11, 630 'type' => 'int', 631 'not_null' => '1', 632 'default' => 0, 633 ), 634 ), 635 'indexes' => 636 array ( 637 'PRIMARY' => 638 array ( 639 'type' => 'primary', 640 'fields' => 641 array ( 642 0 => 'collaboration_id', 643 1 => 'user_id', 644 ), 645 ), 646 ), 647 ), 648 'ezcollab_notification_rule' => 649 array ( 650 'name' => 'ezcollab_notification_rule', 651 'fields' => 652 array ( 653 'collab_identifier' => 654 array ( 655 'length' => 255, 656 'type' => 'varchar', 657 'not_null' => '1', 658 'default' => '', 659 ), 660 'id' => 661 array ( 662 'type' => 'auto_increment', 663 'default' => false, 664 ), 665 'user_id' => 666 array ( 667 'length' => 255, 668 'type' => 'varchar', 669 'not_null' => '1', 670 'default' => '', 671 ), 672 ), 673 'indexes' => 674 array ( 675 'PRIMARY' => 676 array ( 677 'type' => 'primary', 678 'fields' => 679 array ( 680 0 => 'id', 681 ), 682 ), 683 ), 684 ), 685 'ezcollab_profile' => 686 array ( 687 'name' => 'ezcollab_profile', 688 'fields' => 689 array ( 690 'created' => 691 array ( 692 'length' => 11, 693 'type' => 'int', 694 'not_null' => '1', 695 'default' => 0, 696 ), 697 'data_text1' => 698 array ( 699 'type' => 'longtext', 700 'not_null' => '1', 701 'default' => false, 702 ), 703 'id' => 704 array ( 705 'type' => 'auto_increment', 706 'default' => false, 707 ), 708 'main_group' => 709 array ( 710 'length' => 11, 711 'type' => 'int', 712 'not_null' => '1', 713 'default' => 0, 714 ), 715 'modified' => 716 array ( 717 'length' => 11, 718 'type' => 'int', 719 'not_null' => '1', 720 'default' => 0, 721 ), 722 'user_id' => 723 array ( 724 'length' => 11, 725 'type' => 'int', 726 'not_null' => '1', 727 'default' => 0, 728 ), 729 ), 730 'indexes' => 731 array ( 732 'PRIMARY' => 733 array ( 734 'type' => 'primary', 735 'fields' => 736 array ( 737 0 => 'id', 738 ), 739 ), 740 ), 741 ), 742 'ezcollab_simple_message' => 743 array ( 744 'name' => 'ezcollab_simple_message', 745 'fields' => 746 array ( 747 'created' => 748 array ( 749 'length' => 11, 750 'type' => 'int', 751 'not_null' => '1', 752 'default' => 0, 753 ), 754 'creator_id' => 755 array ( 756 'length' => 11, 757 'type' => 'int', 758 'not_null' => '1', 759 'default' => 0, 760 ), 761 'data_float1' => 762 array ( 763 'type' => 'float', 764 'not_null' => '1', 765 'default' => 0, 766 ), 767 'data_float2' => 768 array ( 769 'type' => 'float', 770 'not_null' => '1', 771 'default' => 0, 772 ), 773 'data_float3' => 774 array ( 775 'type' => 'float', 776 'not_null' => '1', 777 'default' => 0, 778 ), 779 'data_int1' => 780 array ( 781 'length' => 11, 782 'type' => 'int', 783 'not_null' => '1', 784 'default' => 0, 785 ), 786 'data_int2' => 787 array ( 788 'length' => 11, 789 'type' => 'int', 790 'not_null' => '1', 791 'default' => 0, 792 ), 793 'data_int3' => 794 array ( 795 'length' => 11, 796 'type' => 'int', 797 'not_null' => '1', 798 'default' => 0, 799 ), 800 'data_text1' => 801 array ( 802 'type' => 'longtext', 803 'not_null' => '1', 804 'default' => false, 805 ), 806 'data_text2' => 807 array ( 808 'type' => 'longtext', 809 'not_null' => '1', 810 'default' => false, 811 ), 812 'data_text3' => 813 array ( 814 'type' => 'longtext', 815 'not_null' => '1', 816 'default' => false, 817 ), 818 'id' => 819 array ( 820 'type' => 'auto_increment', 821 'default' => false, 822 ), 823 'message_type' => 824 array ( 825 'length' => 40, 826 'type' => 'varchar', 827 'not_null' => '1', 828 'default' => '', 829 ), 830 'modified' => 831 array ( 832 'length' => 11, 833 'type' => 'int', 834 'not_null' => '1', 835 'default' => 0, 836 ), 837 ), 838 'indexes' => 839 array ( 840 'PRIMARY' => 841 array ( 842 'type' => 'primary', 843 'fields' => 844 array ( 845 0 => 'id', 846 ), 847 ), 848 ), 849 ), 850 'ezcontent_language' => 851 array ( 852 'name' => 'ezcontent_language', 853 'fields' => 854 array ( 855 'disabled' => 856 array ( 857 'length' => 11, 858 'type' => 'int', 859 'not_null' => '1', 860 'default' => 0, 861 ), 862 'id' => 863 array ( 864 'length' => 11, 865 'type' => 'int', 866 'not_null' => '1', 867 'default' => 0, 868 ), 869 'locale' => 870 array ( 871 'length' => 20, 872 'type' => 'varchar', 873 'not_null' => '1', 874 'default' => '', 875 ), 876 'name' => 877 array ( 878 'length' => 255, 879 'type' => 'varchar', 880 'not_null' => '1', 881 'default' => '', 882 ), 883 ), 884 'indexes' => 885 array ( 886 'PRIMARY' => 887 array ( 888 'type' => 'primary', 889 'fields' => 890 array ( 891 0 => 'id', 892 ), 893 ), 894 ), 895 ), 896 'ezcontentbrowsebookmark' => 897 array ( 898 'name' => 'ezcontentbrowsebookmark', 899 'fields' => 900 array ( 901 'id' => 902 array ( 903 'type' => 'auto_increment', 904 'default' => false, 905 ), 906 'name' => 907 array ( 908 'length' => 255, 909 'type' => 'varchar', 910 'not_null' => '1', 911 'default' => '', 912 ), 913 'node_id' => 914 array ( 915 'length' => 11, 916 'type' => 'int', 917 'not_null' => '1', 918 'default' => 0, 919 ), 920 'user_id' => 921 array ( 922 'length' => 11, 923 'type' => 'int', 924 'not_null' => '1', 925 'default' => 0, 926 ), 927 ), 928 'indexes' => 929 array ( 930 'PRIMARY' => 931 array ( 932 'type' => 'primary', 933 'fields' => 934 array ( 935 0 => 'id', 936 ), 937 ), 938 'ezcontentbrowsebookmark_user' => 939 array ( 940 'type' => 'non-unique', 941 'fields' => 942 array ( 943 0 => 'user_id', 944 ), 945 ), 946 ), 947 ), 948 'ezcontentbrowserecent' => 949 array ( 950 'name' => 'ezcontentbrowserecent', 951 'fields' => 952 array ( 953 'created' => 954 array ( 955 'length' => 11, 956 'type' => 'int', 957 'not_null' => '1', 958 'default' => 0, 959 ), 960 'id' => 961 array ( 962 'type' => 'auto_increment', 963 'default' => false, 964 ), 965 'name' => 966 array ( 967 'length' => 255, 968 'type' => 'varchar', 969 'not_null' => '1', 970 'default' => '', 971 ), 972 'node_id' => 973 array ( 974 'length' => 11, 975 'type' => 'int', 976 'not_null' => '1', 977 'default' => 0, 978 ), 979 'user_id' => 980 array ( 981 'length' => 11, 982 'type' => 'int', 983 'not_null' => '1', 984 'default' => 0, 985 ), 986 ), 987 'indexes' => 988 array ( 989 'PRIMARY' => 990 array ( 991 'type' => 'primary', 992 'fields' => 993 array ( 994 0 => 'id', 995 ), 996 ), 997 'ezcontentbrowserecent_user' => 998 array ( 999 'type' => 'non-unique', 1000 'fields' => 1001 array ( 1002 0 => 'user_id', 1003 ), 1004 ), 1005 ), 1006 ), 1007 'ezcontentclass' => 1008 array ( 1009 'name' => 'ezcontentclass', 1010 'fields' => 1011 array ( 1012 'always_available' => 1013 array ( 1014 'length' => 11, 1015 'type' => 'int', 1016 'not_null' => '1', 1017 'default' => 0, 1018 ), 1019 'contentobject_name' => 1020 array ( 1021 'length' => 255, 1022 'type' => 'varchar', 1023 'default' => NULL, 1024 ), 1025 'created' => 1026 array ( 1027 'length' => 11, 1028 'type' => 'int', 1029 'not_null' => '1', 1030 'default' => 0, 1031 ), 1032 'creator_id' => 1033 array ( 1034 'length' => 11, 1035 'type' => 'int', 1036 'not_null' => '1', 1037 'default' => 0, 1038 ), 1039 'id' => 1040 array ( 1041 'type' => 'auto_increment', 1042 'default' => false, 1043 ), 1044 'identifier' => 1045 array ( 1046 'length' => 50, 1047 'type' => 'varchar', 1048 'not_null' => '1', 1049 'default' => '', 1050 ), 1051 'initial_language_id' => 1052 array ( 1053 'length' => 11, 1054 'type' => 'int', 1055 'not_null' => '1', 1056 'default' => 0, 1057 ), 1058 'is_container' => 1059 array ( 1060 'length' => 11, 1061 'type' => 'int', 1062 'not_null' => '1', 1063 'default' => 0, 1064 ), 1065 'language_mask' => 1066 array ( 1067 'length' => 11, 1068 'type' => 'int', 1069 'not_null' => '1', 1070 'default' => 0, 1071 ), 1072 'modified' => 1073 array ( 1074 'length' => 11, 1075 'type' => 'int', 1076 'not_null' => '1', 1077 'default' => 0, 1078 ), 1079 'modifier_id' => 1080 array ( 1081 'length' => 11, 1082 'type' => 'int', 1083 'not_null' => '1', 1084 'default' => 0, 1085 ), 1086 'remote_id' => 1087 array ( 1088 'length' => 100, 1089 'type' => 'varchar', 1090 'not_null' => '1', 1091 'default' => '', 1092 ), 1093 'serialized_name_list' => 1094 array ( 1095 'length' => 255, 1096 'type' => 'varchar', 1097 'default' => NULL, 1098 ), 1099 'sort_field' => 1100 array ( 1101 'length' => 11, 1102 'type' => 'int', 1103 'not_null' => '1', 1104 'default' => 1, 1105 ), 1106 'sort_order' => 1107 array ( 1108 'length' => 11, 1109 'type' => 'int', 1110 'not_null' => '1', 1111 'default' => 1, 1112 ), 1113 'version' => 1114 array ( 1115 'length' => 11, 1116 'type' => 'int', 1117 'not_null' => '1', 1118 'default' => 0, 1119 ), 1120 ), 1121 'indexes' => 1122 array ( 1123 'PRIMARY' => 1124 array ( 1125 'type' => 'primary', 1126 'fields' => 1127 array ( 1128 0 => 'id', 1129 1 => 'version', 1130 ), 1131 ), 1132 'ezcontentclass_version' => 1133 array ( 1134 'type' => 'non-unique', 1135 'fields' => 1136 array ( 1137 0 => 'version', 1138 ), 1139 ), 1140 ), 1141 ), 1142 'ezcontentclass_attribute' => 1143 array ( 1144 'name' => 'ezcontentclass_attribute', 1145 'fields' => 1146 array ( 1147 'can_translate' => 1148 array ( 1149 'length' => 11, 1150 'type' => 'int', 1151 'default' => 1, 1152 ), 1153 'contentclass_id' => 1154 array ( 1155 'length' => 11, 1156 'type' => 'int', 1157 'not_null' => '1', 1158 'default' => 0, 1159 ), 1160 'data_float1' => 1161 array ( 1162 'type' => 'float', 1163 'default' => NULL, 1164 ), 1165 'data_float2' => 1166 array ( 1167 'type' => 'float', 1168 'default' => NULL, 1169 ), 1170 'data_float3' => 1171 array ( 1172 'type' => 'float', 1173 'default' => NULL, 1174 ), 1175 'data_float4' => 1176 array ( 1177 'type' => 'float', 1178 'default' => NULL, 1179 ), 1180 'data_int1' => 1181 array ( 1182 'length' => 11, 1183 'type' => 'int', 1184 'default' => NULL, 1185 ), 1186 'data_int2' => 1187 array ( 1188 'length' => 11, 1189 'type' => 'int', 1190 'default' => NULL, 1191 ), 1192 'data_int3' => 1193 array ( 1194 'length' => 11, 1195 'type' => 'int', 1196 'default' => NULL, 1197 ), 1198 'data_int4' => 1199 array ( 1200 'length' => 11, 1201 'type' => 'int', 1202 'default' => NULL, 1203 ), 1204 'data_text1' => 1205 array ( 1206 'length' => 50, 1207 'type' => 'varchar', 1208 'default' => NULL, 1209 ), 1210 'data_text2' => 1211 array ( 1212 'length' => 50, 1213 'type' => 'varchar', 1214 'default' => NULL, 1215 ), 1216 'data_text3' => 1217 array ( 1218 'length' => 50, 1219 'type' => 'varchar', 1220 'default' => NULL, 1221 ), 1222 'data_text4' => 1223 array ( 1224 'length' => 255, 1225 'type' => 'varchar', 1226 'default' => NULL, 1227 ), 1228 'data_text5' => 1229 array ( 1230 'type' => 'longtext', 1231 'default' => false, 1232 ), 1233 'data_type_string' => 1234 array ( 1235 'length' => 50, 1236 'type' => 'varchar', 1237 'not_null' => '1', 1238 'default' => '', 1239 ), 1240 'id' => 1241 array ( 1242 'type' => 'auto_increment', 1243 'default' => false, 1244 ), 1245 'identifier' => 1246 array ( 1247 'length' => 50, 1248 'type' => 'varchar', 1249 'not_null' => '1', 1250 'default' => '', 1251 ), 1252 'is_information_collector' => 1253 array ( 1254 'length' => 11, 1255 'type' => 'int', 1256 'not_null' => '1', 1257 'default' => 0, 1258 ), 1259 'is_required' => 1260 array ( 1261 'length' => 11, 1262 'type' => 'int', 1263 'not_null' => '1', 1264 'default' => 0, 1265 ), 1266 'is_searchable' => 1267 array ( 1268 'length' => 11, 1269 'type' => 'int', 1270 'not_null' => '1', 1271 'default' => 0, 1272 ), 1273 'placement' => 1274 array ( 1275 'length' => 11, 1276 'type' => 'int', 1277 'not_null' => '1', 1278 'default' => 0, 1279 ), 1280 'serialized_name_list' => 1281 array ( 1282 'length' => 255, 1283 'type' => 'varchar', 1284 'not_null' => '1', 1285 'default' => '', 1286 ), 1287 'version' => 1288 array ( 1289 'length' => 11, 1290 'type' => 'int', 1291 'not_null' => '1', 1292 'default' => 0, 1293 ), 1294 ), 1295 'indexes' => 1296 array ( 1297 'PRIMARY' => 1298 array ( 1299 'type' => 'primary', 1300 'fields' => 1301 array ( 1302 0 => 'id', 1303 1 => 'version', 1304 ), 1305 ), 1306 'ezcontentclass_attr_ccid' => 1307 array ( 1308 'type' => 'non-unique', 1309 'fields' => 1310 array ( 1311 0 => 'contentclass_id', 1312 ), 1313 ), 1314 ), 1315 ), 1316 'ezcontentclass_classgroup' => 1317 array ( 1318 'name' => 'ezcontentclass_classgroup', 1319 'fields' => 1320 array ( 1321 'contentclass_id' => 1322 array ( 1323 'length' => 11, 1324 'type' => 'int', 1325 'not_null' => '1', 1326 'default' => 0, 1327 ), 1328 'contentclass_version' => 1329 array ( 1330 'length' => 11, 1331 'type' => 'int', 1332 'not_null' => '1', 1333 'default' => 0, 1334 ), 1335 'group_id' => 1336 array ( 1337 'length' => 11, 1338 'type' => 'int', 1339 'not_null' => '1', 1340 'default' => 0, 1341 ), 1342 'group_name' => 1343 array ( 1344 'length' => 255, 1345 'type' => 'varchar', 1346 'default' => NULL, 1347 ), 1348 ), 1349 'indexes' => 1350 array ( 1351 'PRIMARY' => 1352 array ( 1353 'type' => 'primary', 1354 'fields' => 1355 array ( 1356 0 => 'contentclass_id', 1357 1 => 'contentclass_version', 1358 2 => 'group_id', 1359 ), 1360 ), 1361 ), 1362 ), 1363 'ezcontentclass_name' => 1364 array ( 1365 'name' => 'ezcontentclass_name', 1366 'fields' => 1367 array ( 1368 'contentclass_id' => 1369 array ( 1370 'length' => 11, 1371 'type' => 'int', 1372 'not_null' => '1', 1373 'default' => 0, 1374 ), 1375 'contentclass_version' => 1376 array ( 1377 'length' => 11, 1378 'type' => 'int', 1379 'not_null' => '1', 1380 'default' => 0, 1381 ), 1382 'language_id' => 1383 array ( 1384 'length' => 11, 1385 'type' => 'int', 1386 'not_null' => '1', 1387 'default' => 0, 1388 ), 1389 'language_locale' => 1390 array ( 1391 'length' => 20, 1392 'type' => 'varchar', 1393 'not_null' => '1', 1394 'default' => '', 1395 ), 1396 'name' => 1397 array ( 1398 'length' => 255, 1399 'type' => 'varchar', 1400 'not_null' => '1', 1401 'default' => '', 1402 ), 1403 ), 1404 'indexes' => 1405 array ( 1406 'PRIMARY' => 1407 array ( 1408 'type' => 'primary', 1409 'fields' => 1410 array ( 1411 0 => 'contentclass_id', 1412 1 => 'contentclass_version', 1413 2 => 'language_id', 1414 ), 1415 ), 1416 ), 1417 ), 1418 'ezcontentclassgroup' => 1419 array ( 1420 'name' => 'ezcontentclassgroup', 1421 'fields' => 1422 array ( 1423 'created' => 1424 array ( 1425 'length' => 11, 1426 'type' => 'int', 1427 'not_null' => '1', 1428 'default' => 0, 1429 ), 1430 'creator_id' => 1431 array ( 1432 'length' => 11, 1433 'type' => 'int', 1434 'not_null' => '1', 1435 'default' => 0, 1436 ), 1437 'id' => 1438 array ( 1439 'type' => 'auto_increment', 1440 'default' => false, 1441 ), 1442 'modified' => 1443 array ( 1444 'length' => 11, 1445 'type' => 'int', 1446 'not_null' => '1', 1447 'default' => 0, 1448 ), 1449 'modifier_id' => 1450 array ( 1451 'length' => 11, 1452 'type' => 'int', 1453 'not_null' => '1', 1454 'default' => 0, 1455 ), 1456 'name' => 1457 array ( 1458 'length' => 255, 1459 'type' => 'varchar', 1460 'default' => NULL, 1461 ), 1462 ), 1463 'indexes' => 1464 array ( 1465 'PRIMARY' => 1466 array ( 1467 'type' => 'primary', 1468 'fields' => 1469 array ( 1470 0 => 'id', 1471 ), 1472 ), 1473 ), 1474 ), 1475 'ezcontentobject' => 1476 array ( 1477 'name' => 'ezcontentobject', 1478 'fields' => 1479 array ( 1480 'contentclass_id' => 1481 array ( 1482 'length' => 11, 1483 'type' => 'int', 1484 'not_null' => '1', 1485 'default' => 0, 1486 ), 1487 'current_version' => 1488 array ( 1489 'length' => 11, 1490 'type' => 'int', 1491 'default' => NULL, 1492 ), 1493 'id' => 1494 array ( 1495 'type' => 'auto_increment', 1496 'default' => false, 1497 ), 1498 'initial_language_id' => 1499 array ( 1500 'length' => 11, 1501 'type' => 'int', 1502 'not_null' => '1', 1503 'default' => 0, 1504 ), 1505 'is_published' => 1506 array ( 1507 'length' => 11, 1508 'type' => 'int', 1509 'default' => NULL, 1510 ), 1511 'language_mask' => 1512 array ( 1513 'length' => 11, 1514 'type' => 'int', 1515 'not_null' => '1', 1516 'default' => 0, 1517 ), 1518 'modified' => 1519 array ( 1520 'length' => 11, 1521 'type' => 'int', 1522 'not_null' => '1', 1523 'default' => 0, 1524 ), 1525 'name' => 1526 array ( 1527 'length' => 255, 1528 'type' => 'varchar', 1529 'default' => NULL, 1530 ), 1531 'owner_id' => 1532 array ( 1533 'length' => 11, 1534 'type' => 'int', 1535 'not_null' => '1', 1536 'default' => 0, 1537 ), 1538 'published' => 1539 array ( 1540 'length' => 11, 1541 'type' => 'int', 1542 'not_null' => '1', 1543 'default' => 0, 1544 ), 1545 'remote_id' => 1546 array ( 1547 'length' => 100, 1548 'type' => 'varchar', 1549 'default' => NULL, 1550 ), 1551 'section_id' => 1552 array ( 1553 'length' => 11, 1554 'type' => 'int', 1555 'not_null' => '1', 1556 'default' => 0, 1557 ), 1558 'status' => 1559 array ( 1560 'length' => 11, 1561 'type' => 'int', 1562 'default' => 0, 1563 ), 1564 ), 1565 'indexes' => 1566 array ( 1567 'PRIMARY' => 1568 array ( 1569 'type' => 'primary', 1570 'fields' => 1571 array ( 1572 0 => 'id', 1573 ), 1574 ), 1575 'ezcontentobject_classid' => 1576 array ( 1577 'type' => 'non-unique', 1578 'fields' => 1579 array ( 1580 0 => 'contentclass_id', 1581 ), 1582 ), 1583 'ezcontentobject_currentversion' => 1584 array ( 1585 'type' => 'non-unique', 1586 'fields' => 1587 array ( 1588 0 => 'current_version', 1589 ), 1590 ), 1591 'ezcontentobject_lmask' => 1592 array ( 1593 'type' => 'non-unique', 1594 'fields' => 1595 array ( 1596 0 => 'language_mask', 1597 ), 1598 ), 1599 'ezcontentobject_pub' => 1600 array ( 1601 'type' => 'non-unique', 1602 'fields' => 1603 array ( 1604 0 => 'published', 1605 ), 1606 ), 1607 'ezcontentobject_status' => 1608 array ( 1609 'type' => 'non-unique', 1610 'fields' => 1611 array ( 1612 0 => 'status', 1613 ), 1614 ), 1615 ), 1616 ), 1617 'ezcontentobject_attribute' => 1618 array ( 1619 'name' => 'ezcontentobject_attribute', 1620 'fields' => 1621 array ( 1622 'attribute_original_id' => 1623 array ( 1624 'length' => 11, 1625 'type' => 'int', 1626 'default' => 0, 1627 ), 1628 'contentclassattribute_id' => 1629 array ( 1630 'length' => 11, 1631 'type' => 'int', 1632 'not_null' => '1', 1633 'default' => 0, 1634 ), 1635 'contentobject_id' => 1636 array ( 1637 'length' => 11, 1638 'type' => 'int', 1639 'not_null' => '1', 1640 'default' => 0, 1641 ), 1642 'data_float' => 1643 array ( 1644 'type' => 'float', 1645 'default' => NULL, 1646 ), 1647 'data_int' => 1648 array ( 1649 'length' => 11, 1650 'type' => 'int', 1651 'default' => NULL, 1652 ), 1653 'data_text' => 1654 array ( 1655 'type' => 'longtext', 1656 'default' => false, 1657 ), 1658 'data_type_string' => 1659 array ( 1660 'length' => 50, 1661 'type' => 'varchar', 1662 'default' => '', 1663 ), 1664 'id' => 1665 array ( 1666 'type' => 'auto_increment', 1667 'default' => false, 1668 ), 1669 'language_code' => 1670 array ( 1671 'length' => 20, 1672 'type' => 'varchar', 1673 'not_null' => '1', 1674 'default' => '', 1675 ), 1676 'language_id' => 1677 array ( 1678 'length' => 11, 1679 'type' => 'int', 1680 'not_null' => '1', 1681 'default' => 0, 1682 ), 1683 'sort_key_int' => 1684 array ( 1685 'length' => 11, 1686 'type' => 'int', 1687 'not_null' => '1', 1688 'default' => 0, 1689 ), 1690 'sort_key_string' => 1691 array ( 1692 'length' => 255, 1693 'type' => 'varchar', 1694 'not_null' => '1', 1695 'default' => '', 1696 ), 1697 'version' => 1698 array ( 1699 'length' => 11, 1700 'type' => 'int', 1701 'not_null' => '1', 1702 'default' => 0, 1703 ), 1704 ), 1705 'indexes' => 1706 array ( 1707 'PRIMARY' => 1708 array ( 1709 'type' => 'primary', 1710 'fields' => 1711 array ( 1712 0 => 'id', 1713 1 => 'version', 1714 ), 1715 ), 1716 'ezcontentobject_attr_id' => 1717 array ( 1718 'type' => 'non-unique', 1719 'fields' => 1720 array ( 1721 0 => 'id', 1722 ), 1723 ), 1724 'ezcontentobject_attribute_co_id_ver_lang_code' => 1725 array ( 1726 'type' => 'non-unique', 1727 'fields' => 1728 array ( 1729 0 => 'contentobject_id', 1730 1 => 'version', 1731 2 => 'language_code', 1732 ), 1733 ), 1734 'ezcontentobject_attribute_contentobject_id' => 1735 array ( 1736 'type' => 'non-unique', 1737 'fields' => 1738 array ( 1739 0 => 'contentobject_id', 1740 ), 1741 ), 1742 'ezcontentobject_attribute_language_code' => 1743 array ( 1744 'type' => 'non-unique', 1745 'fields' => 1746 array ( 1747 0 => 'language_code', 1748 ), 1749 ), 1750 'sort_key_int' => 1751 array ( 1752 'type' => 'non-unique', 1753 'fields' => 1754 array ( 1755 0 => 'sort_key_int', 1756 ), 1757 ), 1758 'sort_key_string' => 1759 array ( 1760 'type' => 'non-unique', 1761 'fields' => 1762 array ( 1763 0 => 'sort_key_string', 1764 ), 1765 ), 1766 ), 1767 ), 1768 'ezcontentobject_link' => 1769 array ( 1770 'name' => 'ezcontentobject_link', 1771 'fields' => 1772 array ( 1773 'contentclassattribute_id' => 1774 array ( 1775 'length' => 11, 1776 'type' => 'int', 1777 'not_null' => '1', 1778 'default' => 0, 1779 ), 1780 'from_contentobject_id' => 1781 array ( 1782 'length' => 11, 1783 'type' => 'int', 1784 'not_null' => '1', 1785 'default' => 0, 1786 ), 1787 'from_contentobject_version' => 1788 array ( 1789 'length' => 11, 1790 'type' => 'int', 1791 'not_null' => '1', 1792 'default' => 0, 1793 ), 1794 'id' => 1795 array ( 1796 'type' => 'auto_increment', 1797 'default' => false, 1798 ), 1799 'op_code' => 1800 array ( 1801 'length' => 11, 1802 'type' => 'int', 1803 'not_null' => '1', 1804 'default' => 0, 1805 ), 1806 'relation_type' => 1807 array ( 1808 'length' => 11, 1809 'type' => 'int', 1810 'not_null' => '1', 1811 'default' => 1, 1812 ), 1813 'to_contentobject_id' => 1814 array ( 1815 'length' => 11, 1816 'type' => 'int', 1817 'not_null' => '1', 1818 'default' => 0, 1819 ), 1820 ), 1821 'indexes' => 1822 array ( 1823 'PRIMARY' => 1824 array ( 1825 'type' => 'primary', 1826 'fields' => 1827 array ( 1828 0 => 'id', 1829 ), 1830 ), 1831 'ezco_link_from' => 1832 array ( 1833 'type' => 'non-unique', 1834 'fields' => 1835 array ( 1836 0 => 'from_contentobject_id', 1837 1 => 'from_contentobject_version', 1838 2 => 'contentclassattribute_id', 1839 ), 1840 ), 1841 'ezco_link_to_co_id' => 1842 array ( 1843 'type' => 'non-unique', 1844 'fields' => 1845 array ( 1846 0 => 'to_contentobject_id', 1847 ), 1848 ), 1849 ), 1850 ), 1851 'ezcontentobject_name' => 1852 array ( 1853 'name' => 'ezcontentobject_name', 1854 'fields' => 1855 array ( 1856 'content_translation' => 1857 array ( 1858 'length' => 20, 1859 'type' => 'varchar', 1860 'not_null' => '1', 1861 'default' => '', 1862 ), 1863 'content_version' => 1864 array ( 1865 'length' => 11, 1866 'type' => 'int', 1867 'not_null' => '1', 1868 'default' => 0, 1869 ), 1870 'contentobject_id' => 1871 array ( 1872 'length' => 11, 1873 'type' => 'int', 1874 'not_null' => '1', 1875 'default' => 0, 1876 ), 1877 'language_id' => 1878 array ( 1879 'length' => 11, 1880 'type' => 'int', 1881 'not_null' => '1', 1882 'default' => 0, 1883 ), 1884 'name' => 1885 array ( 1886 'length' => 255, 1887 'type' => 'varchar', 1888 'default' => NULL, 1889 ), 1890 'real_translation' => 1891 array ( 1892 'length' => 20, 1893 'type' => 'varchar', 1894 'default' => NULL, 1895 ), 1896 ), 1897 'indexes' => 1898 array ( 1899 'PRIMARY' => 1900 array ( 1901 'type' => 'primary', 1902 'fields' => 1903 array ( 1904 0 => 'contentobject_id', 1905 1 => 'content_version', 1906 2 => 'content_translation', 1907 ), 1908 ), 1909 'ezcontentobject_name_co_id' => 1910 array ( 1911 'type' => 'non-unique', 1912 'fields' => 1913 array ( 1914 0 => 'contentobject_id', 1915 ), 1916 ), 1917 'ezcontentobject_name_cov_id' => 1918 array ( 1919 'type' => 'non-unique', 1920 'fields' => 1921 array ( 1922 0 => 'content_version', 1923 ), 1924 ), 1925 'ezcontentobject_name_lang_id' => 1926 array ( 1927 'type' => 'non-unique', 1928 'fields' => 1929 array ( 1930 0 => 'language_id', 1931 ), 1932 ), 1933 'ezcontentobject_name_name' => 1934 array ( 1935 'type' => 'non-unique', 1936 'fields' => 1937 array ( 1938 0 => 'name', 1939 ), 1940 ), 1941 ), 1942 ), 1943 'ezcontentobject_trash' => 1944 array ( 1945 'name' => 'ezcontentobject_trash', 1946 'fields' => 1947 array ( 1948 'contentobject_id' => 1949 array ( 1950 'length' => 11, 1951 'type' => 'int', 1952 'default' => NULL, 1953 ), 1954 'contentobject_version' => 1955 array ( 1956 'length' => 11, 1957 'type' => 'int', 1958 'default' => NULL, 1959 ), 1960 'depth' => 1961 array ( 1962 'length' => 11, 1963 'type' => 'int', 1964 'not_null' => '1', 1965 'default' => 0, 1966 ), 1967 'is_hidden' => 1968 array ( 1969 'length' => 11, 1970 'type' => 'int', 1971 'not_null' => '1', 1972 'default' => 0, 1973 ), 1974 'is_invisible' => 1975 array ( 1976 'length' => 11, 1977 'type' => 'int', 1978 'not_null' => '1', 1979 'default' => 0, 1980 ), 1981 'main_node_id' => 1982 array ( 1983 'length' => 11, 1984 'type' => 'int', 1985 'default' => NULL, 1986 ), 1987 'modified_subnode' => 1988 array ( 1989 'length' => 11, 1990 'type' => 'int', 1991 'default' => 0, 1992 ), 1993 'node_id' => 1994 array ( 1995 'length' => 11, 1996 'type' => 'int', 1997 'not_null' => '1', 1998 'default' => 0, 1999 ), 2000 'parent_node_id' => 2001 array ( 2002 'length' => 11, 2003 'type' => 'int', 2004 'not_null' => '1', 2005 'default' => 0, 2006 ), 2007 'path_identification_string' => 2008 array ( 2009 'type' => 'longtext', 2010 'default' => false, 2011 ), 2012 'path_string' => 2013 array ( 2014 'length' => 255, 2015 'type' => 'varchar', 2016 'not_null' => '1', 2017 'default' => '', 2018 ), 2019 'priority' => 2020 array ( 2021 'length' => 11, 2022 'type' => 'int', 2023 'not_null' => '1', 2024 'default' => 0, 2025 ), 2026 'remote_id' => 2027 array ( 2028 'length' => 100, 2029 'type' => 'varchar', 2030 'not_null' => '1', 2031 'default' => '', 2032 ), 2033 'sort_field' => 2034 array ( 2035 'length' => 11, 2036 'type' => 'int', 2037 'default' => 1, 2038 ), 2039 'sort_order' => 2040 array ( 2041 'length' => 11, 2042 'type' => 'int', 2043 'default' => 1, 2044 ), 2045 ), 2046 'indexes' => 2047 array ( 2048 'PRIMARY' => 2049 array ( 2050 'type' => 'primary', 2051 'fields' => 2052 array ( 2053 0 => 'node_id', 2054 ), 2055 ), 2056 'ezcobj_trash_co_id' => 2057 array ( 2058 'type' => 'non-unique', 2059 'fields' => 2060 array ( 2061 0 => 'contentobject_id', 2062 ), 2063 ), 2064 'ezcobj_trash_depth' => 2065 array ( 2066 'type' => 'non-unique', 2067 'fields' => 2068 array ( 2069 0 => 'depth', 2070 ), 2071 ), 2072 'ezcobj_trash_modified_subnode' => 2073 array ( 2074 'type' => 'non-unique', 2075 'fields' => 2076 array ( 2077 0 => 'modified_subnode', 2078 ), 2079 ), 2080 'ezcobj_trash_p_node_id' => 2081 array ( 2082 'type' => 'non-unique', 2083 'fields' => 2084 array ( 2085 0 => 'parent_node_id', 2086 ), 2087 ), 2088 'ezcobj_trash_path' => 2089 array ( 2090 'type' => 'non-unique', 2091 'fields' => 2092 array ( 2093 0 => 'path_string', 2094 ), 2095 ), 2096 'ezcobj_trash_path_ident' => 2097 array ( 2098 'type' => 'non-unique', 2099 'fields' => 2100 array ( 2101 0 => 'path_identification_string', 2102 ), 2103 ), 2104 ), 2105 ), 2106 'ezcontentobject_tree' => 2107 array ( 2108 'name' => 'ezcontentobject_tree', 2109 'fields' => 2110 array ( 2111 'contentobject_id' => 2112 array ( 2113 'length' => 11, 2114 'type' => 'int', 2115 'default' => NULL, 2116 ), 2117 'contentobject_is_published' => 2118 array ( 2119 'length' => 11, 2120 'type' => 'int', 2121 'default' => NULL, 2122 ), 2123 'contentobject_version' => 2124 array ( 2125 'length' => 11, 2126 'type' => 'int', 2127 'default' => NULL, 2128 ), 2129 'depth' => 2130 array ( 2131 'length' => 11, 2132 'type' => 'int', 2133 'not_null' => '1', 2134 'default' => 0, 2135 ), 2136 'is_hidden' => 2137 array ( 2138 'length' => 11, 2139 'type' => 'int', 2140 'not_null' => '1', 2141 'default' => 0, 2142 ), 2143 'is_invisible' => 2144 array ( 2145 'length' => 11, 2146 'type' => 'int', 2147 'not_null' => '1', 2148 'default' => 0, 2149 ), 2150 'main_node_id' => 2151 array ( 2152 'length' => 11, 2153 'type' => 'int', 2154 'default' => NULL, 2155 ), 2156 'modified_subnode' => 2157 array ( 2158 'length' => 11, 2159 'type' => 'int', 2160 'default' => 0, 2161 ), 2162 'node_id' => 2163 array ( 2164 'type' => 'auto_increment', 2165 'default' => false, 2166 ), 2167 'parent_node_id' => 2168 array ( 2169 'length' => 11, 2170 'type' => 'int', 2171 'not_null' => '1', 2172 'default' => 0, 2173 ), 2174 'path_identification_string' => 2175 array ( 2176 'type' => 'longtext', 2177 'default' => false, 2178 ), 2179 'path_string' => 2180 array ( 2181 'length' => 255, 2182 'type' => 'varchar', 2183 'not_null' => '1', 2184 'default' => '', 2185 ), 2186 'priority' => 2187 array ( 2188 'length' => 11, 2189 'type' => 'int', 2190 'not_null' => '1', 2191 'default' => 0, 2192 ), 2193 'remote_id' => 2194 array ( 2195 'length' => 100, 2196 'type' => 'varchar', 2197 'not_null' => '1', 2198 'default' => '', 2199 ), 2200 'sort_field' => 2201 array ( 2202 'length' => 11, 2203 'type' => 'int', 2204 'default' => 1, 2205 ), 2206 'sort_order' => 2207 array ( 2208 'length' => 11, 2209 'type' => 'int', 2210 'default' => 1, 2211 ), 2212 ), 2213 'indexes' => 2214 array ( 2215 'PRIMARY' => 2216 array ( 2217 'type' => 'primary', 2218 'fields' => 2219 array ( 2220 0 => 'node_id', 2221 ), 2222 ), 2223 'ezcontentobject_tree_co_id' => 2224 array ( 2225 'type' => 'non-unique', 2226 'fields' => 2227 array ( 2228 0 => 'contentobject_id', 2229 ), 2230 ), 2231 'ezcontentobject_tree_depth' => 2232 array ( 2233 'type' => 'non-unique', 2234 'fields' => 2235 array ( 2236 0 => 'depth', 2237 ), 2238 ), 2239 'ezcontentobject_tree_p_node_id' => 2240 array ( 2241 'type' => 'non-unique', 2242 'fields' => 2243 array ( 2244 0 => 'parent_node_id', 2245 ), 2246 ), 2247 'ezcontentobject_tree_path' => 2248 array ( 2249 'type' => 'non-unique', 2250 'fields' => 2251 array ( 2252 0 => 'path_string', 2253 ), 2254 ), 2255 'ezcontentobject_tree_path_ident' => 2256 array ( 2257 'type' => 'non-unique', 2258 'fields' => 2259 array ( 2260 0 => 'path_identification_string', 2261 ), 2262 ), 2263 'modified_subnode' => 2264 array ( 2265 'type' => 'non-unique', 2266 'fields' => 2267 array ( 2268 0 => 'modified_subnode', 2269 ), 2270 ), 2271 ), 2272 ), 2273 'ezcontentobject_version' => 2274 array ( 2275 'name' => 'ezcontentobject_version', 2276 'fields' => 2277 array ( 2278 'contentobject_id' => 2279 array ( 2280 'length' => 11, 2281 'type' => 'int', 2282 'default' => NULL, 2283 ), 2284 'created' => 2285 array ( 2286 'length' => 11, 2287 'type' => 'int', 2288 'not_null' => '1', 2289 'default' => 0, 2290 ), 2291 'creator_id' => 2292 array ( 2293 'length' => 11, 2294 'type' => 'int', 2295 'not_null' => '1', 2296 'default' => 0, 2297 ), 2298 'id' => 2299 array ( 2300 'type' => 'auto_increment', 2301 'default' => false, 2302 ), 2303 'initial_language_id' => 2304 array ( 2305 'length' => 11, 2306 'type' => 'int', 2307 'not_null' => '1', 2308 'default' => 0, 2309 ), 2310 'language_mask' => 2311 array ( 2312 'length' => 11, 2313 'type' => 'int', 2314 'not_null' => '1', 2315 'default' => 0, 2316 ), 2317 'modified' => 2318 array ( 2319 'length' => 11, 2320 'type' => 'int', 2321 'not_null' => '1', 2322 'default' => 0, 2323 ), 2324 'status' => 2325 array ( 2326 'length' => 11, 2327 'type' => 'int', 2328 'not_null' => '1', 2329 'default' => 0, 2330 ), 2331 'user_id' => 2332 array ( 2333 'length' => 11, 2334 'type' => 'int', 2335 'not_null' => '1', 2336 'default' => 0, 2337 ), 2338 'version' => 2339 array ( 2340 'length' => 11, 2341 'type' => 'int', 2342 'not_null' => '1', 2343 'default' => 0, 2344 ), 2345 'workflow_event_pos' => 2346 array ( 2347 'length' => 11, 2348 'type' => 'int', 2349 'default' => 0, 2350 ), 2351 ), 2352 'indexes' => 2353 array ( 2354 'PRIMARY' => 2355 array ( 2356 'type' => 'primary', 2357 'fields' => 2358 array ( 2359 0 => 'id', 2360 ), 2361 ), 2362 'ezcobj_version_creator_id' => 2363 array ( 2364 'type' => 'non-unique', 2365 'fields' => 2366 array ( 2367 0 => 'creator_id', 2368 ), 2369 ), 2370 'ezcobj_version_status' => 2371 array ( 2372 'type' => 'non-unique', 2373 'fields' => 2374 array ( 2375 0 => 'status', 2376 ), 2377 ), 2378 'idx_object_version_objver' => 2379 array ( 2380 'type' => 'non-unique', 2381 'fields' => 2382 array ( 2383 0 => 'contentobject_id', 2384 1 => 'version', 2385 ), 2386 ), 2387 ), 2388 ), 2389 'ezcurrencydata' => 2390 array ( 2391 'name' => 'ezcurrencydata', 2392 'fields' => 2393 array ( 2394 'auto_rate_value' => 2395 array ( 2396 'length' => '10,5', 2397 'type' => 'decimal', 2398 'not_null' => '1', 2399 'default' => '0.00000', 2400 ), 2401 'code' => 2402 array ( 2403 'length' => 4, 2404 'type' => 'varchar', 2405 'not_null' => '1', 2406 'default' => '', 2407 ), 2408 'custom_rate_value' => 2409 array ( 2410 'length' => '10,5', 2411 'type' => 'decimal', 2412 'not_null' => '1', 2413 'default' => '0.00000', 2414 ), 2415 'id' => 2416 array ( 2417 'type' => 'auto_increment', 2418 'default' => false, 2419 ), 2420 'locale' => 2421 array ( 2422 'length' => 255, 2423 'type' => 'varchar', 2424 'not_null' => '1', 2425 'default' => '', 2426 ), 2427 'rate_factor' => 2428 array ( 2429 'length' => '10,5', 2430 'type' => 'decimal', 2431 'not_null' => '1', 2432 'default' => '1.00000', 2433 ), 2434 'status' => 2435 array ( 2436 'length' => 11, 2437 'type' => 'int', 2438 'not_null' => '1', 2439 'default' => 1, 2440 ), 2441 'symbol' => 2442 array ( 2443 'length' => 255, 2444 'type' => 'varchar', 2445 'not_null' => '1', 2446 'default' => '', 2447 ), 2448 ), 2449 'indexes' => 2450 array ( 2451 'PRIMARY' => 2452 array ( 2453 'type' => 'primary', 2454 'fields' => 2455 array ( 2456 0 => 'id', 2457 ), 2458 ), 2459 'ezcurrencydata_code' => 2460 array ( 2461 'type' => 'non-unique', 2462 'fields' => 2463 array ( 2464 0 => 'code', 2465 ), 2466 ), 2467 ), 2468 ), 2469 'ezdiscountrule' => 2470 array ( 2471 'name' => 'ezdiscountrule', 2472 'fields' => 2473 array ( 2474 'id' => 2475 array ( 2476 'type' => 'auto_increment', 2477 'default' => false, 2478 ), 2479 'name' => 2480 array ( 2481 'length' => 255, 2482 'type' => 'varchar', 2483 'not_null' => '1', 2484 'default' => '', 2485 ), 2486 ), 2487 'indexes' => 2488 array ( 2489 'PRIMARY' => 2490 array ( 2491 'type' => 'primary', 2492 'fields' => 2493 array ( 2494 0 => 'id', 2495 ), 2496 ), 2497 ), 2498 ), 2499 'ezdiscountsubrule' => 2500 array ( 2501 'name' => 'ezdiscountsubrule', 2502 'fields' => 2503 array ( 2504 'discount_percent' => 2505 array ( 2506 'type' => 'float', 2507 'default' => NULL, 2508 ), 2509 'discountrule_id' => 2510 array ( 2511 'length' => 11, 2512 'type' => 'int', 2513 'not_null' => '1', 2514 'default' => 0, 2515 ), 2516 'id' => 2517 array ( 2518 'type' => 'auto_increment', 2519 'default' => false, 2520 ), 2521 'limitation' => 2522 array ( 2523 'length' => 1, 2524 'type' => 'char', 2525 'default' => NULL, 2526 ), 2527 'name' => 2528 array ( 2529 'length' => 255, 2530 'type' => 'varchar', 2531 'not_null' => '1', 2532 'default' => '', 2533 ), 2534 ), 2535 'indexes' => 2536 array ( 2537 'PRIMARY' => 2538 array ( 2539 'type' => 'primary', 2540 'fields' => 2541 array ( 2542 0 => 'id', 2543 ), 2544 ), 2545 ), 2546 ), 2547 'ezdiscountsubrule_value' => 2548 array ( 2549 'name' => 'ezdiscountsubrule_value', 2550 'fields' => 2551 array ( 2552 'discountsubrule_id' => 2553 array ( 2554 'length' => 11, 2555 'type' => 'int', 2556 'not_null' => '1', 2557 'default' => 0, 2558 ), 2559 'issection' => 2560 array ( 2561 'length' => 11, 2562 'type' => 'int', 2563 'not_null' => '1', 2564 'default' => 0, 2565 ), 2566 'value' => 2567 array ( 2568 'length' => 11, 2569 'type' => 'int', 2570 'not_null' => '1', 2571 'default' => 0, 2572 ), 2573 ), 2574 'indexes' => 2575 array ( 2576 'PRIMARY' => 2577 array ( 2578 'type' => 'primary', 2579 'fields' => 2580 array ( 2581 0 => 'discountsubrule_id', 2582 1 => 'value', 2583 2 => 'issection', 2584 ), 2585 ), 2586 ), 2587 ), 2588 'ezenumobjectvalue' => 2589 array ( 2590 'name' => 'ezenumobjectvalue', 2591 'fields' => 2592 array ( 2593 'contentobject_attribute_id' => 2594 array ( 2595 'length' => 11, 2596 'type' => 'int', 2597 'not_null' => '1', 2598 'default' => 0, 2599 ), 2600 'contentobject_attribute_version' => 2601 array ( 2602 'length' => 11, 2603 'type' => 'int', 2604 'not_null' => '1', 2605 'default' => 0, 2606 ), 2607 'enumelement' => 2608 array ( 2609 'length' => 255, 2610 'type' => 'varchar', 2611 'not_null' => '1', 2612 'default' => '', 2613 ), 2614 'enumid' => 2615 array ( 2616 'length' => 11, 2617 'type' => 'int', 2618 'not_null' => '1', 2619 'default' => 0, 2620 ), 2621 'enumvalue' => 2622 array ( 2623 'length' => 255, 2624 'type' => 'varchar', 2625 'not_null' => '1', 2626 'default' => '', 2627 ), 2628 ), 2629 'indexes' => 2630 array ( 2631 'PRIMARY' => 2632 array ( 2633 'type' => 'primary', 2634 'fields' => 2635 array ( 2636 0 => 'contentobject_attribute_id', 2637 1 => 'contentobject_attribute_version', 2638 2 => 'enumid', 2639 ), 2640 ), 2641 'ezenumobjectvalue_co_attr_id_co_attr_ver' => 2642 array ( 2643 'type' => 'non-unique', 2644 'fields' => 2645 array ( 2646 0 => 'contentobject_attribute_id', 2647 1 => 'contentobject_attribute_version', 2648 ), 2649 ), 2650 ), 2651 ), 2652 'ezenumvalue' => 2653 array ( 2654 'name' => 'ezenumvalue', 2655 'fields' => 2656 array ( 2657 'contentclass_attribute_id' => 2658 array ( 2659 'length' => 11, 2660 'type' => 'int', 2661 'not_null' => '1', 2662 'default' => 0, 2663 ), 2664 'contentclass_attribute_version' => 2665 array ( 2666 'length' => 11, 2667 'type' => 'int', 2668 'not_null' => '1', 2669 'default' => 0, 2670 ), 2671 'enumelement' => 2672 array ( 2673 'length' => 255, 2674 'type' => 'varchar', 2675 'not_null' => '1', 2676 'default' => '', 2677 ), 2678 'enumvalue' => 2679 array ( 2680 'length' => 255, 2681 'type' => 'varchar', 2682 'not_null' => '1', 2683 'default' => '', 2684 ), 2685 'id' => 2686 array ( 2687 'type' => 'auto_increment', 2688 'default' => false, 2689 ), 2690 'placement' => 2691 array ( 2692 'length' => 11, 2693 'type' => 'int', 2694 'not_null' => '1', 2695 'default' => 0, 2696 ), 2697 ), 2698 'indexes' => 2699 array ( 2700 'PRIMARY' => 2701 array ( 2702 'type' => 'primary', 2703 'fields' => 2704 array ( 2705 0 => 'id', 2706 1 => 'contentclass_attribute_id', 2707 2 => 'contentclass_attribute_version', 2708 ), 2709 ), 2710 'ezenumvalue_co_cl_attr_id_co_class_att_ver' => 2711 array ( 2712 'type' => 'non-unique', 2713 'fields' => 2714 array ( 2715 0 => 'contentclass_attribute_id', 2716 1 => 'contentclass_attribute_version', 2717 ), 2718 ), 2719 ), 2720 ), 2721 'ezforgot_password' => 2722 array ( 2723 'name' => 'ezforgot_password', 2724 'fields' => 2725 array ( 2726 'hash_key' => 2727 array ( 2728 'length' => 32, 2729 'type' => 'varchar', 2730 'not_null' => '1', 2731 'default' => '', 2732 ), 2733 'id' => 2734 array ( 2735 'type' => 'auto_increment', 2736 'default' => false, 2737 ), 2738 'time' => 2739 array ( 2740 'length' => 11, 2741 'type' => 'int', 2742 'not_null' => '1', 2743 'default' => 0, 2744 ), 2745 'user_id' => 2746 array ( 2747 'length' => 11, 2748 'type' => 'int', 2749 'not_null' => '1', 2750 'default' => 0, 2751 ), 2752 ), 2753 'indexes' => 2754 array ( 2755 'PRIMARY' => 2756 array ( 2757 'type' => 'primary', 2758 'fields' => 2759 array ( 2760 0 => 'id', 2761 ), 2762 ), 2763 ), 2764 ), 2765 'ezgeneral_digest_user_settings' => 2766 array ( 2767 'name' => 'ezgeneral_digest_user_settings', 2768 'fields' => 2769 array ( 2770 'address' => 2771 array ( 2772 'length' => 255, 2773 'type' => 'varchar', 2774 'not_null' => '1', 2775 'default' => '', 2776 ), 2777 'day' => 2778 array ( 2779 'length' => 255, 2780 'type' => 'varchar', 2781 'not_null' => '1', 2782 'default' => '', 2783 ), 2784 'digest_type' => 2785 array ( 2786 'length' => 11, 2787 'type' => 'int', 2788 'not_null' => '1', 2789 'default' => 0, 2790 ), 2791 'id' => 2792 array ( 2793 'type' => 'auto_increment', 2794 'default' => false, 2795 ), 2796 'receive_digest' => 2797 array ( 2798 'length' => 11, 2799 'type' => 'int', 2800 'not_null' => '1', 2801 'default' => 0, 2802 ), 2803 'time' => 2804 array ( 2805 'length' => 255, 2806 'type' => 'varchar', 2807 'not_null' => '1', 2808 'default' => '', 2809 ), 2810 ), 2811 'indexes' => 2812 array ( 2813 'PRIMARY' => 2814 array ( 2815 'type' => 'primary', 2816 'fields' => 2817 array ( 2818 0 => 'id', 2819 ), 2820 ), 2821 ), 2822 ), 2823 'ezimage' => 2824 array ( 2825 'name' => 'ezimage', 2826 'fields' => 2827 array ( 2828 'alternative_text' => 2829 array ( 2830 'length' => 255, 2831 'type' => 'varchar', 2832 'not_null' => '1', 2833 'default' => '', 2834 ), 2835 'contentobject_attribute_id' => 2836 array ( 2837 'length' => 11, 2838 'type' => 'int', 2839 'not_null' => '1', 2840 'default' => 0, 2841 ), 2842 'filename' => 2843 array ( 2844 'length' => 255, 2845 'type' => 'varchar', 2846 'not_null' => '1', 2847 'default' => '', 2848 ), 2849 'mime_type' => 2850 array ( 2851 'length' => 50, 2852 'type' => 'varchar', 2853 'not_null' => '1', 2854 'default' => '', 2855 ), 2856 'original_filename' => 2857 array ( 2858 'length' => 255, 2859 'type' => 'varchar', 2860 'not_null' => '1', 2861 'default' => '', 2862 ), 2863 'version' => 2864 array ( 2865 'length' => 11, 2866 'type' => 'int', 2867 'not_null' => '1', 2868 'default' => 0, 2869 ), 2870 ), 2871 'indexes' => 2872 array ( 2873 'PRIMARY' => 2874 array ( 2875 'type' => 'primary', 2876 'fields' => 2877 array ( 2878 0 => 'contentobject_attribute_id', 2879 1 => 'version', 2880 ), 2881 ), 2882 ), 2883 ), 2884 'ezimagefile' => 2885 array ( 2886 'name' => 'ezimagefile', 2887 'fields' => 2888 array ( 2889 'contentobject_attribute_id' => 2890 array ( 2891 'length' => 11, 2892 'type' => 'int', 2893 'not_null' => '1', 2894 'default' => 0, 2895 ), 2896 'filepath' => 2897 array ( 2898 'type' => 'longtext', 2899 'not_null' => '1', 2900 'default' => false, 2901 ), 2902 'id' => 2903 array ( 2904 'type' => 'auto_increment', 2905 'default' => false, 2906 ), 2907 ), 2908 'indexes' => 2909 array ( 2910 'PRIMARY' => 2911 array ( 2912 'type' => 'primary', 2913 'fields' => 2914 array ( 2915 0 => 'id', 2916 ), 2917 ), 2918 'ezimagefile_coid' => 2919 array ( 2920 'type' => 'non-unique', 2921 'fields' => 2922 array ( 2923 0 => 'contentobject_attribute_id', 2924 ), 2925 ), 2926 'ezimagefile_file' => 2927 array ( 2928 'type' => 'non-unique', 2929 'fields' => 2930 array ( 2931 0 => 'filepath', 2932 ), 2933 ), 2934 ), 2935 ), 2936 'ezimagevariation' => 2937 array ( 2938 'name' => 'ezimagevariation', 2939 'fields' => 2940 array ( 2941 'additional_path' => 2942 array ( 2943 'length' => 255, 2944 'type' => 'varchar', 2945 'default' => NULL, 2946 ), 2947 'contentobject_attribute_id' => 2948 array ( 2949 'length' => 11, 2950 'type' => 'int', 2951 'not_null' => '1', 2952 'default' => 0, 2953 ), 2954 'filename' => 2955 array ( 2956 'length' => 255, 2957 'type' => 'varchar', 2958 'not_null' => '1', 2959 'default' => '', 2960 ), 2961 'height' => 2962 array ( 2963 'length' => 11, 2964 'type' => 'int', 2965 'not_null' => '1', 2966 'default' => 0, 2967 ), 2968 'requested_height' => 2969 array ( 2970 'length' => 11, 2971 'type' => 'int', 2972 'not_null' => '1', 2973 'default' => 0, 2974 ), 2975 'requested_width' => 2976 array ( 2977 'length' => 11, 2978 'type' => 'int', 2979 'not_null' => '1', 2980 'default' => 0, 2981 ), 2982 'version' => 2983 array ( 2984 'length' => 11, 2985 'type' => 'int', 2986 'not_null' => '1', 2987 'default' => 0, 2988 ), 2989 'width' => 2990 array ( 2991 'length' => 11, 2992 'type' => 'int', 2993 'not_null' => '1', 2994 'default' => 0, 2995 ), 2996 ), 2997 'indexes' => 2998 array ( 2999 'PRIMARY' => 3000 array ( 3001 'type' => 'primary', 3002 'fields' => 3003 array ( 3004 0 => 'contentobject_attribute_id', 3005 1 => 'version', 3006 2 => 'requested_width', 3007 3 => 'requested_height', 3008 ), 3009 ), 3010 ), 3011 ), 3012 'ezinfocollection' => 3013 array ( 3014 'name' => 'ezinfocollection', 3015 'fields' => 3016 array ( 3017 'contentobject_id' => 3018 array ( 3019 'length' => 11, 3020 'type' => 'int', 3021 'not_null' => '1', 3022 'default' => 0, 3023 ), 3024 'created' => 3025 array ( 3026 'length' => 11, 3027 'type' => 'int', 3028 'not_null' => '1', 3029 'default' => 0, 3030 ), 3031 'creator_id' => 3032 array ( 3033 'length' => 11, 3034 'type' => 'int', 3035 'not_null' => '1', 3036 'default' => 0, 3037 ), 3038 'id' => 3039 array ( 3040 'type' => 'auto_increment', 3041 'default' => false, 3042 ), 3043 'modified' => 3044 array ( 3045 'length' => 11, 3046 'type' => 'int', 3047 'default' => 0, 3048 ), 3049 'user_identifier' => 3050 array ( 3051 'length' => 34, 3052 'type' => 'varchar', 3053 'default' => NULL, 3054 ), 3055 ), 3056 'indexes' => 3057 array ( 3058 'PRIMARY' => 3059 array ( 3060 'type' => 'primary', 3061 'fields' => 3062 array ( 3063 0 => 'id', 3064 ), 3065 ), 3066 ), 3067 ), 3068 'ezinfocollection_attribute' => 3069 array ( 3070 'name' => 'ezinfocollection_attribute', 3071 'fields' => 3072 array ( 3073 'contentclass_attribute_id' => 3074 array ( 3075 'length' => 11, 3076 'type' => 'int', 3077 'not_null' => '1', 3078 'default' => 0, 3079 ), 3080 'contentobject_attribute_id' => 3081 array ( 3082 'length' => 11, 3083 'type' => 'int', 3084 'default' => NULL, 3085 ), 3086 'contentobject_id' => 3087 array ( 3088 'length' => 11, 3089 'type' => 'int', 3090 'default' => NULL, 3091 ), 3092 'data_float' => 3093 array ( 3094 'type' => 'float', 3095 'default' => NULL, 3096 ), 3097 'data_int' => 3098 array ( 3099 'length' => 11, 3100 'type' => 'int', 3101 'default' => NULL, 3102 ), 3103 'data_text' => 3104 array ( 3105 'type' => 'longtext', 3106 'default' => false, 3107 ), 3108 'id' => 3109 array ( 3110 'type' => 'auto_increment', 3111 'default' => false, 3112 ), 3113 'informationcollection_id' => 3114 array ( 3115 'length' => 11, 3116 'type' => 'int', 3117 'not_null' => '1', 3118 'default' => 0, 3119 ), 3120 ), 3121 'indexes' => 3122 array ( 3123 'PRIMARY' => 3124 array ( 3125 'type' => 'primary', 3126 'fields' => 3127 array ( 3128 0 => 'id', 3129 ), 3130 ), 3131 'ezinfocollection_attr_co_id' => 3132 array ( 3133 'type' => 'non-unique', 3134 'fields' => 3135 array ( 3136 0 => 'contentobject_id', 3137 ), 3138 ), 3139 ), 3140 ), 3141 'ezkeyword' => 3142 array ( 3143 'name' => 'ezkeyword', 3144 'fields' => 3145 array ( 3146 'class_id' => 3147 array ( 3148 'length' => 11, 3149 'type' => 'int', 3150 'not_null' => '1', 3151 'default' => 0, 3152 ), 3153 'id' => 3154 array ( 3155 'type' => 'auto_increment', 3156 'default' => false, 3157 ), 3158 'keyword' => 3159 array ( 3160 'length' => 255, 3161 'type' => 'varchar', 3162 'default' => NULL, 3163 ), 3164 ), 3165 'indexes' => 3166 array ( 3167 'PRIMARY' => 3168 array ( 3169 'type' => 'primary', 3170 'fields' => 3171 array ( 3172 0 => 'id', 3173 ), 3174 ), 3175 'ezkeyword_keyword' => 3176 array ( 3177 'type' => 'non-unique', 3178 'fields' => 3179 array ( 3180 0 => 'keyword', 3181 ), 3182 ), 3183 'ezkeyword_keyword_id' => 3184 array ( 3185 'type' => 'non-unique', 3186 'fields' => 3187 array ( 3188 0 => 'keyword', 3189 1 => 'id', 3190 ), 3191 ), 3192 ), 3193 ), 3194 'ezkeyword_attribute_link' => 3195 array ( 3196 'name' => 'ezkeyword_attribute_link', 3197 'fields' => 3198 array ( 3199 'id' => 3200 array ( 3201 'type' => 'auto_increment', 3202 'default' => false, 3203 ), 3204 'keyword_id' => 3205 array ( 3206 'length' => 11, 3207 'type' => 'int', 3208 'not_null' => '1', 3209 'default' => 0, 3210 ), 3211 'objectattribute_id' => 3212 array ( 3213 'length' => 11, 3214 'type' => 'int', 3215 'not_null' => '1', 3216 'default' => 0, 3217 ), 3218 ), 3219 'indexes' => 3220 array ( 3221 'PRIMARY' => 3222 array ( 3223 'type' => 'primary', 3224 'fields' => 3225 array ( 3226 0 => 'id', 3227 ), 3228 ), 3229 'ezkeyword_attr_link_keyword_id' => 3230 array ( 3231 'type' => 'non-unique', 3232 'fields' => 3233 array ( 3234 0 => 'keyword_id', 3235 ), 3236 ), 3237 'ezkeyword_attr_link_kid_oaid' => 3238 array ( 3239 'type' => 'non-unique', 3240 'fields' => 3241 array ( 3242 0 => 'keyword_id', 3243 1 => 'objectattribute_id', 3244 ), 3245 ), 3246 ), 3247 ), 3248 'ezmedia' => 3249 array ( 3250 'name' => 'ezmedia', 3251 'fields' => 3252 array ( 3253 'contentobject_attribute_id' => 3254 array ( 3255 'length' => 11, 3256 'type' => 'int', 3257 'not_null' => '1', 3258 'default' => 0, 3259 ), 3260 'controls' => 3261 array ( 3262 'length' => 50, 3263 'type' => 'varchar', 3264 'default' => NULL, 3265 ), 3266 'filename' => 3267 array ( 3268 'length' => 255, 3269 'type' => 'varchar', 3270 'not_null' => '1', 3271 'default' => '', 3272 ), 3273 'has_controller' => 3274 array ( 3275 'length' => 11, 3276 'type' => 'int', 3277 'default' => 0, 3278 ), 3279 'height' => 3280 array ( 3281 'length' => 11, 3282 'type' => 'int', 3283 'default' => NULL, 3284 ), 3285 'is_autoplay' => 3286 array ( 3287 'length' => 11, 3288 'type' => 'int', 3289 'default' => 0, 3290 ), 3291 'is_loop' => 3292 array ( 3293 'length' => 11, 3294 'type' => 'int', 3295 'default' => 0, 3296 ), 3297 'mime_type' => 3298 array ( 3299 'length' => 50, 3300 'type' => 'varchar', 3301 'not_null' => '1', 3302 'default' => '', 3303 ), 3304 'original_filename' => 3305 array ( 3306 'length' => 255, 3307 'type' => 'varchar', 3308 'not_null' => '1', 3309 'default' => '', 3310 ), 3311 'pluginspage' => 3312 array ( 3313 'length' => 255, 3314 'type' => 'varchar', 3315 'default' => NULL, 3316 ), 3317 'quality' => 3318 array ( 3319 'length' => 50, 3320 'type' => 'varchar', 3321 'default' => NULL, 3322 ), 3323 'version' => 3324 array ( 3325 'length' => 11, 3326 'type' => 'int', 3327 'not_null' => '1', 3328 'default' => 0, 3329 ), 3330 'width' => 3331 array ( 3332 'length' => 11, 3333 'type' => 'int', 3334 'default' => NULL, 3335 ), 3336 ), 3337 'indexes' => 3338 array ( 3339 'PRIMARY' => 3340 array ( 3341 'type' => 'primary', 3342 'fields' => 3343 array ( 3344 0 => 'contentobject_attribute_id', 3345 1 => 'version', 3346 ), 3347 ), 3348 ), 3349 ), 3350 'ezmessage' => 3351 array ( 3352 'name' => 'ezmessage', 3353 'fields' => 3354 array ( 3355 'body' => 3356 array ( 3357 'type' => 'longtext', 3358 'default' => false, 3359 ), 3360 'destination_address' => 3361 array ( 3362 'length' => 50, 3363 'type' => 'varchar', 3364 'not_null' => '1', 3365 'default' => '', 3366 ), 3367 'id' => 3368 array ( 3369 'type' => 'auto_increment', 3370 'default' => false, 3371 ), 3372 'is_sent' => 3373 array ( 3374 'length' => 11, 3375 'type' => 'int', 3376 'not_null' => '1', 3377 'default' => 0, 3378 ), 3379 'send_method' => 3380 array ( 3381 'length' => 50, 3382 'type' => 'varchar', 3383 'not_null' => '1', 3384 'default' => '', 3385 ), 3386 'send_time' => 3387 array ( 3388 'length' => 50, 3389 'type' => 'varchar', 3390 'not_null' => '1', 3391 'default' => '', 3392 ), 3393 'send_weekday' => 3394 array ( 3395 'length' => 50, 3396 'type' => 'varchar', 3397 'not_null' => '1', 3398 'default' => '', 3399 ), 3400 'title' => 3401 array ( 3402 'length' => 255, 3403 'type' => 'varchar', 3404 'not_null' => '1', 3405 'default' => '', 3406 ), 3407 ), 3408 'indexes' => 3409 array ( 3410 'PRIMARY' => 3411 array ( 3412 'type' => 'primary', 3413 'fields' => 3414 array ( 3415 0 => 'id', 3416 ), 3417 ), 3418 ), 3419 ), 3420 'ezmodule_run' => 3421 array ( 3422 'name' => 'ezmodule_run', 3423 'fields' => 3424 array ( 3425 'function_name' => 3426 array ( 3427 'length' => 255, 3428 'type' => 'varchar', 3429 'default' => NULL, 3430 ), 3431 'id' => 3432 array ( 3433 'type' => 'auto_increment', 3434 'default' => false, 3435 ), 3436 'module_data' => 3437 array ( 3438 'type' => 'longtext', 3439 'default' => false, 3440 ), 3441 'module_name' => 3442 array ( 3443 'length' => 255, 3444 'type' => 'varchar', 3445 'default' => NULL, 3446 ), 3447 'workflow_process_id' => 3448 array ( 3449 'length' => 11, 3450 'type' => 'int', 3451 'default' => NULL, 3452 ), 3453 ), 3454 'indexes' => 3455 array ( 3456 'PRIMARY' => 3457 array ( 3458 'type' => 'primary', 3459 'fields' => 3460 array ( 3461 0 => 'id', 3462 ), 3463 ), 3464 'ezmodule_run_workflow_process_id_s' => 3465 array ( 3466 'type' => 'unique', 3467 'fields' => 3468 array ( 3469 0 => 'workflow_process_id', 3470 ), 3471 ), 3472 ), 3473 ), 3474 'ezmultipricedata' => 3475 array ( 3476 'name' => 'ezmultipricedata', 3477 'fields' => 3478 array ( 3479 'contentobject_attr_id' => 3480 array ( 3481 'length' => 11, 3482 'type' => 'int', 3483 'not_null' => '1', 3484 'default' => 0, 3485 ), 3486 'contentobject_attr_version' => 3487 array ( 3488 'length' => 11, 3489 'type' => 'int', 3490 'not_null' => '1', 3491 'default' => 0, 3492 ), 3493 'currency_code' => 3494 array ( 3495 'length' => 4, 3496 'type' => 'varchar', 3497 'not_null' => '1', 3498 'default' => '', 3499 ), 3500 'id' => 3501 array ( 3502 'type' => 'auto_increment', 3503 'default' => false, 3504 ), 3505 'type' => 3506 array ( 3507 'length' => 11, 3508 'type' => 'int', 3509 'not_null' => '1', 3510 'default' => 0, 3511 ), 3512 'value' => 3513 array ( 3514 'length' => '15,2', 3515 'type' => 'decimal', 3516 'not_null' => '1', 3517 'default' => '0.00', 3518 ), 3519 ), 3520 'indexes' => 3521 array ( 3522 'PRIMARY' => 3523 array ( 3524 'type' => 'primary', 3525 'fields' => 3526 array ( 3527 0 => 'id', 3528 ), 3529 ), 3530 'ezmultipricedata_coa_id' => 3531 array ( 3532 'type' => 'non-unique', 3533 'fields' => 3534 array ( 3535 0 => 'contentobject_attr_id', 3536 ), 3537 ), 3538 'ezmultipricedata_coa_version' => 3539 array ( 3540 'type' => 'non-unique', 3541 'fields' => 3542 array ( 3543 0 => 'contentobject_attr_version', 3544 ), 3545 ), 3546 'ezmultipricedata_currency_code' => 3547 array ( 3548 'type' => 'non-unique', 3549 'fields' => 3550 array ( 3551 0 => 'currency_code', 3552 ), 3553 ), 3554 ), 3555 ), 3556 'eznode_assignment' => 3557 array ( 3558 'name' => 'eznode_assignment', 3559 'fields' => 3560 array ( 3561 'contentobject_id' => 3562 array ( 3563 'length' => 11, 3564 'type' => 'int', 3565 'default' => NULL, 3566 ), 3567 'contentobject_version' => 3568 array ( 3569 'length' => 11, 3570 'type' => 'int', 3571 'default' => NULL, 3572 ), 3573 'from_node_id' => 3574 array ( 3575 'length' => 11, 3576 'type' => 'int', 3577 'default' => 0, 3578 ), 3579 'id' => 3580 array ( 3581 'type' => 'auto_increment', 3582 'default' => false, 3583 ), 3584 'is_main' => 3585 array ( 3586 'length' => 11, 3587 'type' => 'int', 3588 'not_null' => '1', 3589 'default' => 0, 3590 ), 3591 'op_code' => 3592 array ( 3593 'length' => 11, 3594 'type' => 'int', 3595 'not_null' => '1', 3596 'default' => 0, 3597 ), 3598 'parent_node' => 3599 array ( 3600 'length' => 11, 3601 'type' => 'int', 3602 'default' => NULL, 3603 ), 3604 'parent_remote_id' => 3605 array ( 3606 'length' => 100, 3607 'type' => 'varchar', 3608 'not_null' => '1', 3609 'default' => '', 3610 ), 3611 'remote_id' => 3612 array ( 3613 'length' => 11, 3614 'type' => 'int', 3615 'not_null' => '1', 3616 'default' => 0, 3617 ), 3618 'sort_field' => 3619 array ( 3620 'length' => 11, 3621 'type' => 'int', 3622 'default' => 1, 3623 ), 3624 'sort_order' => 3625 array ( 3626 'length' => 11, 3627 'type' => 'int', 3628 'default' => 1, 3629 ), 3630 ), 3631 'indexes' => 3632 array ( 3633 'PRIMARY' => 3634 array ( 3635 'type' => 'primary', 3636 'fields' => 3637 array ( 3638 0 => 'id', 3639 ), 3640 ), 3641 'eznode_assignment_co_id' => 3642 array ( 3643 'type' => 'non-unique', 3644 'fields' => 3645 array ( 3646 0 => 'contentobject_id', 3647 ), 3648 ), 3649 'eznode_assignment_co_version' => 3650 array ( 3651 'type' => 'non-unique', 3652 'fields' => 3653 array ( 3654 0 => 'contentobject_version', 3655 ), 3656 ), 3657 'eznode_assignment_coid_cov' => 3658 array ( 3659 'type' => 'non-unique', 3660 'fields' => 3661 array ( 3662 0 => 'contentobject_id', 3663 1 => 'contentobject_version', 3664 ), 3665 ), 3666 'eznode_assignment_is_main' => 3667 array ( 3668 'type' => 'non-unique', 3669 'fields' => 3670 array ( 3671 0 => 'is_main', 3672 ), 3673 ), 3674 'eznode_assignment_parent_node' => 3675 array ( 3676 'type' => 'non-unique', 3677 'fields' => 3678 array ( 3679 0 => 'parent_node', 3680 ), 3681 ), 3682 ), 3683 ), 3684 'eznotificationcollection' => 3685 array ( 3686 'name' => 'eznotificationcollection', 3687 'fields' => 3688 array ( 3689 'data_subject' => 3690 array ( 3691 'type' => 'longtext', 3692 'not_null' => '1', 3693 'default' => false, 3694 ), 3695 'data_text' => 3696 array ( 3697 'type' => 'longtext', 3698 'not_null' => '1', 3699 'default' => false, 3700 ), 3701 'event_id' => 3702 array ( 3703 'length' => 11, 3704 'type' => 'int', 3705 'not_null' => '1', 3706 'default' => 0, 3707 ), 3708 'handler' => 3709 array ( 3710 'length' => 255, 3711 'type' => 'varchar', 3712 'not_null' => '1', 3713 'default' => '', 3714 ), 3715 'id' => 3716 array ( 3717 'type' => 'auto_increment', 3718 'default' => false, 3719 ), 3720 'transport' => 3721 array ( 3722 'length' => 255, 3723 'type' => 'varchar', 3724 'not_null' => '1', 3725 'default' => '', 3726 ), 3727 ), 3728 'indexes' => 3729 array ( 3730 'PRIMARY' => 3731 array ( 3732 'type' => 'primary', 3733 'fields' => 3734 array ( 3735 0 => 'id', 3736 ), 3737 ), 3738 ), 3739 ), 3740 'eznotificationcollection_item' => 3741 array ( 3742 'name' => 'eznotificationcollection_item', 3743 'fields' => 3744 array ( 3745 'address' => 3746 array ( 3747 'length' => 255, 3748 'type' => 'varchar', 3749 'not_null' => '1', 3750 'default' => '', 3751 ), 3752 'collection_id' => 3753 array ( 3754 'length' => 11, 3755 'type' => 'int', 3756 'not_null' => '1', 3757 'default' => 0, 3758 ), 3759 'event_id' => 3760 array ( 3761 'length' => 11, 3762 'type' => 'int', 3763 'not_null' => '1', 3764 'default' => 0, 3765 ), 3766 'id' => 3767 array ( 3768 'type' => 'auto_increment', 3769 'default' => false, 3770 ), 3771 'send_date' => 3772 array ( 3773 'length' => 11, 3774 'type' => 'int', 3775 'not_null' => '1', 3776 'default' => 0, 3777 ), 3778 ), 3779 'indexes' => 3780 array ( 3781 'PRIMARY' => 3782 array ( 3783 'type' => 'primary', 3784 'fields' => 3785 array ( 3786 0 => 'id', 3787 ), 3788 ), 3789 ), 3790 ), 3791 'eznotificationevent' => 3792 array ( 3793 'name' => 'eznotificationevent', 3794 'fields' => 3795 array ( 3796 'data_int1' => 3797 array ( 3798 'length' => 11, 3799 'type' => 'int', 3800 'not_null' => '1', 3801 'default' => 0, 3802 ), 3803 'data_int2' => 3804 array ( 3805 'length' => 11, 3806 'type' => 'int', 3807 'not_null' => '1', 3808 'default' => 0, 3809 ), 3810 'data_int3' => 3811 array ( 3812 'length' => 11, 3813 'type' => 'int', 3814 'not_null' => '1', 3815 'default' => 0, 3816 ), 3817 'data_int4' => 3818 array ( 3819 'length' => 11, 3820 'type' => 'int', 3821 'not_null' => '1', 3822 'default' => 0, 3823 ), 3824 'data_text1' => 3825 array ( 3826 'type' => 'longtext', 3827 'not_null' => '1', 3828 'default' => false, 3829 ), 3830 'data_text2' => 3831 array ( 3832 'type' => 'longtext', 3833 'not_null' => '1', 3834 'default' => false, 3835 ), 3836 'data_text3' => 3837 array ( 3838 'type' => 'longtext', 3839 'not_null' => '1', 3840 'default' => false, 3841 ), 3842 'data_text4' => 3843 array ( 3844 'type' => 'longtext', 3845 'not_null' => '1', 3846 'default' => false, 3847 ), 3848 'event_type_string' => 3849 array ( 3850 'length' => 255, 3851 'type' => 'varchar', 3852 'not_null' => '1', 3853 'default' => '', 3854 ), 3855 'id' => 3856 array ( 3857 'type' => 'auto_increment', 3858 'default' => false, 3859 ), 3860 'status' => 3861 array ( 3862 'length' => 11, 3863 'type' => 'int', 3864 'not_null' => '1', 3865 'default' => 0, 3866 ), 3867 ), 3868 'indexes' => 3869 array ( 3870 'PRIMARY' => 3871 array ( 3872 'type' => 'primary', 3873 'fields' => 3874 array ( 3875 0 => 'id', 3876 ), 3877 ), 3878 ), 3879 ), 3880 'ezoperation_memento' => 3881 array ( 3882 'name' => 'ezoperation_memento', 3883 'fields' => 3884 array ( 3885 'id' => 3886 array ( 3887 'type' => 'auto_increment', 3888 'default' => false, 3889 ), 3890 'main' => 3891 array ( 3892 'length' => 11, 3893 'type' => 'int', 3894 'not_null' => '1', 3895 'default' => 0, 3896 ), 3897 'main_key' => 3898 array ( 3899 'length' => 32, 3900 'type' => 'varchar', 3901 'not_null' => '1', 3902 'default' => '', 3903 ), 3904 'memento_data' => 3905 array ( 3906 'type' => 'longtext', 3907 'not_null' => '1', 3908 'default' => false, 3909 ), 3910 'memento_key' => 3911 array ( 3912 'length' => 32, 3913 'type' => 'varchar', 3914 'not_null' => '1', 3915 'default' => '', 3916 ), 3917 ), 3918 'indexes' => 3919 array ( 3920 'PRIMARY' => 3921 array ( 3922 'type' => 'primary', 3923 'fields' => 3924 array ( 3925 0 => 'id', 3926 1 => 'memento_key', 3927 ), 3928 ), 3929 'ezoperation_memento_memento_key_main' => 3930 array ( 3931 'type' => 'non-unique', 3932 'fields' => 3933 array ( 3934 0 => 'memento_key', 3935 1 => 'main', 3936 ), 3937 ), 3938 ), 3939 ), 3940 'ezorder' => 3941 array ( 3942 'name' => 'ezorder', 3943 'fields' => 3944 array ( 3945 'account_identifier' => 3946 array ( 3947 'length' => 100, 3948 'type' => 'varchar', 3949 'not_null' => '1', 3950 'default' => 'default', 3951 ), 3952 'created' => 3953 array ( 3954 'length' => 11, 3955 'type' => 'int', 3956 'not_null' => '1', 3957 'default' => 0, 3958 ), 3959 'data_text_1' => 3960 array ( 3961 'type' => 'longtext', 3962 'default' => false, 3963 ), 3964 'data_text_2' => 3965 array ( 3966 'type' => 'longtext', 3967 'default' => false, 3968 ), 3969 'email' => 3970 array ( 3971 'length' => 150, 3972 'type' => 'varchar', 3973 'default' => '', 3974 ), 3975 'id' => 3976 array ( 3977 'type' => 'auto_increment', 3978 'default' => false, 3979 ), 3980 'ignore_vat' => 3981 array ( 3982 'length' => 11, 3983 'type' => 'int', 3984 'not_null' => '1', 3985 'default' => 0, 3986 ), 3987 'is_archived' => 3988 array ( 3989 'length' => 11, 3990 'type' => 'int', 3991 'not_null' => '1', 3992 'default' => 0, 3993 ), 3994 'is_temporary' => 3995 array ( 3996 'length' => 11, 3997 'type' => 'int', 3998 'not_null' => '1', 3999 'default' => 1, 4000 ), 4001 'order_nr' => 4002 array ( 4003 'length' => 11, 4004 'type' => 'int', 4005 'not_null' => '1', 4006 'default' => 0, 4007 ), 4008 'productcollection_id' => 4009 array ( 4010 'length' => 11, 4011 'type' => 'int', 4012 'not_null' => '1', 4013 'default' => 0, 4014 ), 4015 'status_id' => 4016 array ( 4017 'length' => 11, 4018 'type' => 'int', 4019 'default' => 0, 4020 ), 4021 'status_modified' => 4022 array ( 4023 'length' => 11, 4024 'type' => 'int', 4025 'default' => 0, 4026 ), 4027 'status_modifier_id' => 4028 array ( 4029 'length' => 11, 4030 'type' => 'int', 4031 'default' => 0, 4032 ), 4033 'user_id' => 4034 array ( 4035 'length' => 11, 4036 'type' => 'int', 4037 'not_null' => '1', 4038 'default' => 0, 4039 ), 4040 ), 4041 'indexes' => 4042 array ( 4043 'PRIMARY' => 4044 array ( 4045 'type' => 'primary', 4046 'fields' => 4047 array ( 4048 0 => 'id', 4049 ), 4050 ), 4051 'ezorder_is_archived' => 4052 array ( 4053 'type' => 'non-unique', 4054 'fields' => 4055 array ( 4056 0 => 'is_archived', 4057 ), 4058 ), 4059 'ezorder_is_tmp' => 4060 array ( 4061 'type' => 'non-unique', 4062 'fields' => 4063 array ( 4064 0 => 'is_temporary', 4065 ), 4066 ), 4067 ), 4068 ), 4069 'ezorder_item' => 4070 array ( 4071 'name' => 'ezorder_item', 4072 'fields' => 4073 array ( 4074 'description' => 4075 array ( 4076 'length' => 255, 4077 'type' => 'varchar', 4078 'default' => NULL, 4079 ), 4080 'id' => 4081 array ( 4082 'type' => 'auto_increment', 4083 'default' => false, 4084 ), 4085 'is_vat_inc' => 4086 array ( 4087 'length' => 11, 4088 'type' => 'int', 4089 'not_null' => '1', 4090 'default' => 0, 4091 ), 4092 'order_id' => 4093 array ( 4094 'length' => 11, 4095 'type' => 'int', 4096 'not_null' => '1', 4097 'default' => 0, 4098 ), 4099 'price' => 4100 array ( 4101 'type' => 'float', 4102 'default' => NULL, 4103 ), 4104 'type' => 4105 array ( 4106 'length' => 30, 4107 'type' => 'varchar', 4108 'default' => NULL, 4109 ), 4110 'vat_value' => 4111 array ( 4112 'length' => 11, 4113 'type' => 'int', 4114 'not_null' => '1', 4115 'default' => 0, 4116 ), 4117 ), 4118 'indexes' => 4119 array ( 4120 'PRIMARY' => 4121 array ( 4122 'type' => 'primary', 4123 'fields' => 4124 array ( 4125 0 => 'id', 4126 ), 4127 ), 4128 'ezorder_item_order_id' => 4129 array ( 4130 'type' => 'non-unique', 4131 'fields' => 4132 array ( 4133 0 => 'order_id', 4134 ), 4135 ), 4136 'ezorder_item_type' => 4137 array ( 4138 'type' => 'non-unique', 4139 'fields' => 4140 array ( 4141 0 => 'type', 4142 ), 4143 ), 4144 ), 4145 ), 4146 'ezorder_status' => 4147 array ( 4148 'name' => 'ezorder_status', 4149 'fields' => 4150 array ( 4151 'id' => 4152 array ( 4153 'type' => 'auto_increment', 4154 'default' => false, 4155 ), 4156 'is_active' => 4157 array ( 4158 'length' => 11, 4159 'type' => 'int', 4160 'not_null' => '1', 4161 'default' => 1, 4162 ), 4163 'name' => 4164 array ( 4165 'length' => 255, 4166 'type' => 'varchar', 4167 'not_null' => '1', 4168 'default' => '', 4169 ), 4170 'status_id' => 4171 array ( 4172 'length' => 11, 4173 'type' => 'int', 4174 'not_null' => '1', 4175 'default' => 0, 4176 ), 4177 ), 4178 'indexes' => 4179 array ( 4180 'PRIMARY' => 4181 array ( 4182 'type' => 'primary', 4183 'fields' => 4184 array ( 4185 0 => 'id', 4186 ), 4187 ), 4188 'ezorder_status_active' => 4189 array ( 4190 'type' => 'non-unique', 4191 'fields' => 4192 array ( 4193 0 => 'is_active', 4194 ), 4195 ), 4196 'ezorder_status_name' => 4197 array ( 4198 'type' => 'non-unique', 4199 'fields' => 4200 array ( 4201 0 => 'name', 4202 ), 4203 ), 4204 'ezorder_status_sid' => 4205 array ( 4206 'type' => 'non-unique', 4207 'fields' => 4208 array ( 4209 0 => 'status_id', 4210 ), 4211 ), 4212 ), 4213 ), 4214 'ezorder_status_history' => 4215 array ( 4216 'name' => 'ezorder_status_history', 4217 'fields' => 4218 array ( 4219 'id' => 4220 array ( 4221 'type' => 'auto_increment', 4222 'default' => false, 4223 ), 4224 'modified' => 4225 array ( 4226 'length' => 11, 4227 'type' => 'int', 4228 'not_null' => '1', 4229 'default' => 0, 4230 ), 4231 'modifier_id' => 4232 array ( 4233 'length' => 11, 4234 'type' => 'int', 4235 'not_null' => '1', 4236 'default' => 0, 4237 ), 4238 'order_id' => 4239 array ( 4240 'length' => 11, 4241 'type' => 'int', 4242 'not_null' => '1', 4243 'default' => 0, 4244 ), 4245 'status_id' => 4246 array ( 4247 'length' => 11, 4248 'type' => 'int', 4249 'not_null' => '1', 4250 'default' => 0, 4251 ), 4252 ), 4253 'indexes' => 4254 array ( 4255 'PRIMARY' => 4256 array ( 4257 'type' => 'primary', 4258 'fields' => 4259 array ( 4260 0 => 'id', 4261 ), 4262 ), 4263 'ezorder_status_history_mod' => 4264 array ( 4265 'type' => 'non-unique', 4266 'fields' => 4267 array ( 4268 0 => 'modified', 4269 ), 4270 ), 4271 'ezorder_status_history_oid' => 4272 array ( 4273 'type' => 'non-unique', 4274 'fields' => 4275 array ( 4276 0 => 'order_id', 4277 ), 4278 ), 4279 'ezorder_status_history_sid' => 4280 array ( 4281 'type' => 'non-unique', 4282 'fields' => 4283 array ( 4284 0 => 'status_id', 4285 ), 4286 ), 4287 ), 4288 ), 4289 'ezpackage' => 4290 array ( 4291 'name' => 'ezpackage', 4292 'fields' => 4293 array ( 4294 'id' => 4295 array ( 4296 'type' => 'auto_increment', 4297 'default' => false, 4298 ), 4299 'install_date' => 4300 array ( 4301 'length' => 11, 4302 'type' => 'int', 4303 'not_null' => '1', 4304 'default' => 0, 4305 ), 4306 'name' => 4307 array ( 4308 'length' => 100, 4309 'type' => 'varchar', 4310 'not_null' => '1', 4311 'default' => '', 4312 ), 4313 'version' => 4314 array ( 4315 'length' => 30, 4316 'type' => 'varchar', 4317 'not_null' => '1', 4318 'default' => '0', 4319 ), 4320 ), 4321 'indexes' => 4322 array ( 4323 'PRIMARY' => 4324 array ( 4325 'type' => 'primary', 4326 'fields' => 4327 array ( 4328 0 => 'id', 4329 ), 4330 ), 4331 ), 4332 ), 4333 'ezpaymentobject' => 4334 array ( 4335 'name' => 'ezpaymentobject', 4336 'fields' => 4337 array ( 4338 'id' => 4339 array ( 4340 'type' => 'auto_increment', 4341 'default' => false, 4342 ), 4343 'order_id' => 4344 array ( 4345 'length' => 11, 4346 'type' => 'int', 4347 'not_null' => '1', 4348 'default' => 0, 4349 ), 4350 'payment_string' => 4351 array ( 4352 'length' => 255, 4353 'type' => 'varchar', 4354 'not_null' => '1', 4355 'default' => '', 4356 ), 4357 'status' => 4358 array ( 4359 'length' => 11, 4360 'type' => 'int', 4361 'not_null' => '1', 4362 'default' => 0, 4363 ), 4364 'workflowprocess_id' => 4365 array ( 4366 'length' => 11, 4367 'type' => 'int', 4368 'not_null' => '1', 4369 'default' => 0, 4370 ), 4371 ), 4372 'indexes' => 4373 array ( 4374 'PRIMARY' => 4375 array ( 4376 'type' => 'primary', 4377 'fields' => 4378 array ( 4379 0 => 'id', 4380 ), 4381 ), 4382 ), 4383 ), 4384 'ezpdf_export' => 4385 array ( 4386 'name' => 'ezpdf_export', 4387 'fields' => 4388 array ( 4389 'created' => 4390 array ( 4391 'length' => 11, 4392 'type' => 'int', 4393 'default' => NULL, 4394 ), 4395 'creator_id' => 4396 array ( 4397 'length' => 11, 4398 'type' => 'int', 4399 'default' => NULL, 4400 ), 4401 'export_classes' => 4402 array ( 4403 'length' => 255, 4404 'type' => 'varchar', 4405 'default' => NULL, 4406 ), 4407 'export_structure' => 4408 array ( 4409 'length' => 255, 4410 'type' => 'varchar', 4411 'default' => NULL, 4412 ), 4413 'id' => 4414 array ( 4415 'type' => 'auto_increment', 4416 'default' => false, 4417 ), 4418 'intro_text' => 4419 array ( 4420 'type' => 'longtext', 4421 'default' => false, 4422 ), 4423 'modified' => 4424 array ( 4425 'length' => 11, 4426 'type' => 'int', 4427 'default' => NULL, 4428 ), 4429 'modifier_id' => 4430 array ( 4431 'length' => 11, 4432 'type' => 'int', 4433 'default' => NULL, 4434 ), 4435 'pdf_filename' => 4436 array ( 4437 'length' => 255, 4438 'type' => 'varchar', 4439 'default' => NULL, 4440 ), 4441 'show_frontpage' => 4442 array ( 4443 'length' => 11, 4444 'type' => 'int', 4445 'default' => NULL, 4446 ), 4447 'site_access' => 4448 array ( 4449 'length' => 255, 4450 'type' => 'varchar', 4451 'default' => NULL, 4452 ), 4453 'source_node_id' => 4454 array ( 4455 'length' => 11, 4456 'type' => 'int', 4457 'default' => NULL, 4458 ), 4459 'status' => 4460 array ( 4461 'length' => 11, 4462 'type' => 'int', 4463 'default' => NULL, 4464 ), 4465 'sub_text' => 4466 array ( 4467 'type' => 'longtext', 4468 'default' => false, 4469 ), 4470 'title' => 4471 array ( 4472 'length' => 255, 4473 'type' => 'varchar', 4474 'default' => NULL, 4475 ), 4476 'version' => 4477 array ( 4478 'length' => 11, 4479 'type' => 'int', 4480 'not_null' => '1', 4481 'default' => 0, 4482 ), 4483 ), 4484 'indexes' => 4485 array ( 4486 'PRIMARY' => 4487 array ( 4488 'type' => 'primary', 4489 'fields' => 4490 array ( 4491 0 => 'id', 4492 1 => 'version', 4493 ), 4494 ), 4495 ), 4496 ), 4497 'ezpending_actions' => 4498 array ( 4499 'name' => 'ezpending_actions', 4500 'fields' => 4501 array ( 4502 'action' => 4503 array ( 4504 'length' => 64, 4505 'type' => 'varchar', 4506 'not_null' => '1', 4507 'default' => '', 4508 ), 4509 'param' => 4510 array ( 4511 'type' => 'longtext', 4512 'default' => false, 4513 ), 4514 ), 4515 'indexes' => 4516 array ( 4517 'ezpending_actions_action' => 4518 array ( 4519 'type' => 'non-unique', 4520 'fields' => 4521 array ( 4522 0 => 'action', 4523 ), 4524 ), 4525 ), 4526 ), 4527 'ezpolicy' => 4528 array ( 4529 'name' => 'ezpolicy', 4530 'fields' => 4531 array ( 4532 'function_name' => 4533 array ( 4534 'length' => 255, 4535 'type' => 'varchar', 4536 'default' => NULL, 4537 ), 4538 'id' => 4539 array ( 4540 'type' => 'auto_increment', 4541 'default' => false, 4542 ), 4543 'module_name' => 4544 array ( 4545 'length' => 255, 4546 'type' => 'varchar', 4547 'default' => NULL, 4548 ), 4549 'role_id' => 4550 array ( 4551 'length' => 11, 4552 'type' => 'int', 4553 'default' => NULL, 4554 ), 4555 ), 4556 'indexes' => 4557 array ( 4558 'PRIMARY' => 4559 array ( 4560 'type' => 'primary', 4561 'fields' => 4562 array ( 4563 0 => 'id', 4564 ), 4565 ), 4566 ), 4567 ), 4568 'ezpolicy_limitation' => 4569 array ( 4570 'name' => 'ezpolicy_limitation', 4571 'fields' => 4572 array ( 4573 'id' => 4574 array ( 4575 'type' => 'auto_increment', 4576 'default' => false, 4577 ), 4578 'identifier' => 4579 array ( 4580 'length' => 255, 4581 'type' => 'varchar', 4582 'not_null' => '1', 4583 'default' => '', 4584 ), 4585 'policy_id' => 4586 array ( 4587 'length' => 11, 4588 'type' => 'int', 4589 'default' => NULL, 4590 ), 4591 ), 4592 'indexes' => 4593 array ( 4594 'PRIMARY' => 4595 array ( 4596 'type' => 'primary', 4597 'fields' => 4598 array ( 4599 0 => 'id', 4600 ), 4601 ), 4602 ), 4603 ), 4604 'ezpolicy_limitation_value' => 4605 array ( 4606 'name' => 'ezpolicy_limitation_value', 4607 'fields' => 4608 array ( 4609 'id' => 4610 array ( 4611 'type' => 'auto_increment', 4612 'default' => false, 4613 ), 4614 'limitation_id' => 4615 array ( 4616 'length' => 11, 4617 'type' => 'int', 4618 'default' => NULL, 4619 ), 4620 'value' => 4621 array ( 4622 'length' => 255, 4623 'type' => 'varchar', 4624 'default' => NULL, 4625 ), 4626 ), 4627 'indexes' => 4628 array ( 4629 'PRIMARY' => 4630 array ( 4631 'type' => 'primary', 4632 'fields' => 4633 array ( 4634 0 => 'id', 4635 ), 4636 ), 4637 'ezpolicy_limitation_value_val' => 4638 array ( 4639 'type' => 'non-unique', 4640 'fields' => 4641 array ( 4642 0 => 'value', 4643 ), 4644 ), 4645 ), 4646 ), 4647 'ezpreferences' => 4648 array ( 4649 'name' => 'ezpreferences', 4650 'fields' => 4651 array ( 4652 'id' => 4653 array ( 4654 'type' => 'auto_increment', 4655 'default' => false, 4656 ), 4657 'name' => 4658 array ( 4659 'length' => 100, 4660 'type' => 'varchar', 4661 'default' => NULL, 4662 ), 4663 'user_id' => 4664 array ( 4665 'length' => 11, 4666 'type' => 'int', 4667 'not_null' => '1', 4668 'default' => 0, 4669 ), 4670 'value' => 4671 array ( 4672 'length' => 100, 4673 'type' => 'varchar', 4674 'default' => NULL, 4675 ), 4676 ), 4677 'indexes' => 4678 array ( 4679 'PRIMARY' => 4680 array ( 4681 'type' => 'primary', 4682 'fields' => 4683 array ( 4684 0 => 'id', 4685 ), 4686 ), 4687 'ezpreferences_name' => 4688 array ( 4689 'type' => 'non-unique', 4690 'fields' => 4691 array ( 4692 0 => 'name', 4693 ), 4694 ), 4695 'ezpreferences_user_id_idx' => 4696 array ( 4697 'type' => 'non-unique', 4698 'fields' => 4699 array ( 4700 0 => 'user_id', 4701 1 => 'name', 4702 ), 4703 ), 4704 ), 4705 ), 4706 'ezproductcategory' => 4707 array ( 4708 'name' => 'ezproductcategory', 4709 'fields' => 4710 array ( 4711 'id' => 4712 array ( 4713 'type' => 'auto_increment', 4714 'default' => false, 4715 ), 4716 'name' => 4717 array ( 4718 'length' => 255, 4719 'type' => 'varchar', 4720 'not_null' => '1', 4721 'default' => '', 4722 ), 4723 ), 4724 'indexes' => 4725 array ( 4726 'PRIMARY' => 4727 array ( 4728 'type' => 'primary', 4729 'fields' => 4730 array ( 4731 0 => 'id', 4732 ), 4733 ), 4734 ), 4735 ), 4736 'ezproductcollection' => 4737 array ( 4738 'name' => 'ezproductcollection', 4739 'fields' => 4740 array ( 4741 'created' => 4742 array ( 4743 'length' => 11, 4744 'type' => 'int', 4745 'default' => NULL, 4746 ), 4747 'currency_code' => 4748 array ( 4749 'length' => 4, 4750 'type' => 'varchar', 4751 'not_null' => '1', 4752 'default' => '', 4753 ), 4754 'id' => 4755 array ( 4756 'type' => 'auto_increment', 4757 'default' => false, 4758 ), 4759 ), 4760 'indexes' => 4761 array ( 4762 'PRIMARY' => 4763 array ( 4764 'type' => 'primary', 4765 'fields' => 4766 array ( 4767 0 => 'id', 4768 ), 4769 ), 4770 ), 4771 ), 4772 'ezproductcollection_item' => 4773 array ( 4774 'name' => 'ezproductcollection_item', 4775 'fields' => 4776 array ( 4777 'contentobject_id' => 4778 array ( 4779 'length' => 11, 4780 'type' => 'int', 4781 'not_null' => '1', 4782 'default' => 0, 4783 ), 4784 'discount' => 4785 array ( 4786 'type' => 'float', 4787 'default' => NULL, 4788 ), 4789 'id' => 4790 array ( 4791 'type' => 'auto_increment', 4792 'default' => false, 4793 ), 4794 'is_vat_inc' => 4795 array ( 4796 'length' => 11, 4797 'type' => 'int', 4798 'default' => NULL, 4799 ), 4800 'item_count' => 4801 array ( 4802 'length' => 11, 4803 'type' => 'int', 4804 'not_null' => '1', 4805 'default' => 0, 4806 ), 4807 'name' => 4808 array ( 4809 'length' => 255, 4810 'type' => 'varchar', 4811 'not_null' => '1', 4812 'default' => '', 4813 ), 4814 'price' => 4815 array ( 4816 'type' => 'float', 4817 'default' => 0, 4818 ), 4819 'productcollection_id' => 4820 array ( 4821 'length' => 11, 4822 'type' => 'int', 4823 'not_null' => '1', 4824 'default' => 0, 4825 ), 4826 'vat_value' => 4827 array ( 4828 'type' => 'float', 4829 'default' => NULL, 4830 ), 4831 ), 4832 'indexes' => 4833 array ( 4834 'PRIMARY' => 4835 array ( 4836 'type' => 'primary', 4837 'fields' => 4838 array ( 4839 0 => 'id', 4840 ), 4841 ), 4842 'ezproductcollection_item_contentobject_id' => 4843 array ( 4844 'type' => 'non-unique', 4845 'fields' => 4846 array ( 4847 0 => 'contentobject_id', 4848 ), 4849 ), 4850 'ezproductcollection_item_productcollection_id' => 4851 array ( 4852 'type' => 'non-unique', 4853 'fields' => 4854 array ( 4855 0 => 'productcollection_id', 4856 ), 4857 ), 4858 ), 4859 ), 4860 'ezproductcollection_item_opt' => 4861 array ( 4862 'name' => 'ezproductcollection_item_opt', 4863 'fields' => 4864 array ( 4865 'id' => 4866 array ( 4867 'type' => 'auto_increment', 4868 'default' => false, 4869 ), 4870 'item_id' => 4871 array ( 4872 'length' => 11, 4873 'type' => 'int', 4874 'not_null' => '1', 4875 'default' => 0, 4876 ), 4877 'name' => 4878 array ( 4879 'length' => 255, 4880 'type' => 'varchar', 4881 'not_null' => '1', 4882 'default' => '', 4883 ), 4884 'object_attribute_id' => 4885 array ( 4886 'length' => 11, 4887 'type' => 'int', 4888 'default' => NULL, 4889 ), 4890 'option_item_id' => 4891 array ( 4892 'length' => 11, 4893 'type' => 'int', 4894 'not_null' => '1', 4895 'default' => 0, 4896 ), 4897 'price' => 4898 array ( 4899 'type' => 'float', 4900 'not_null' => '1', 4901 'default' => 0, 4902 ), 4903 'value' => 4904 array ( 4905 'length' => 255, 4906 'type' => 'varchar', 4907 'not_null' => '1', 4908 'default' => '', 4909 ), 4910 ), 4911 'indexes' => 4912 array ( 4913 'PRIMARY' => 4914 array ( 4915 'type' => 'primary', 4916 'fields' => 4917 array ( 4918 0 => 'id', 4919 ), 4920 ), 4921 'ezproductcollection_item_opt_item_id' => 4922 array ( 4923 'type' => 'non-unique', 4924 'fields' => 4925 array ( 4926 0 => 'item_id', 4927 ), 4928 ), 4929 ), 4930 ), 4931 'ezrole' => 4932 array ( 4933 'name' => 'ezrole', 4934 'fields' => 4935 array ( 4936 'id' => 4937 array ( 4938 'type' => 'auto_increment', 4939 'default' => false, 4940 ), 4941 'is_new' => 4942 array ( 4943 'length' => 11, 4944 'type' => 'int', 4945 'not_null' => '1', 4946 'default' => 0, 4947 ), 4948 'name' => 4949 array ( 4950 'length' => 255, 4951 'type' => 'varchar', 4952 'not_null' => '1', 4953 'default' => '', 4954 ), 4955 'value' => 4956 array ( 4957 'length' => 1, 4958 'type' => 'char', 4959 'default' => NULL, 4960 ), 4961 'version' => 4962 array ( 4963 'length' => 11, 4964 'type' => 'int', 4965 'default' => 0, 4966 ), 4967 ), 4968 'indexes' => 4969 array ( 4970 'PRIMARY' => 4971 array ( 4972 'type' => 'primary', 4973 'fields' => 4974 array ( 4975 0 => 'id', 4976 ), 4977 ), 4978 ), 4979 ), 4980 'ezrss_export' => 4981 array ( 4982 'name' => 'ezrss_export', 4983 'fields' => 4984 array ( 4985 'access_url' => 4986 array ( 4987 'length' => 255, 4988 'type' => 'varchar', 4989 'default' => NULL, 4990 ), 4991 'active' => 4992 array ( 4993 'length' => 11, 4994 'type' => 'int', 4995 'default' => NULL, 4996 ), 4997 'created' => 4998 array ( 4999 'length' => 11, 5000 'type' => 'int', 5001 'default' => NULL, 5002 ), 5003 'creator_id' => 5004 array ( 5005 'length' => 11, 5006 'type' => 'int', 5007 'default' => NULL, 5008 ), 5009 'description' => 5010 array ( 5011 'type' => 'longtext', 5012 'default' => false, 5013 ), 5014 'id' => 5015 array ( 5016 'type' => 'auto_increment', 5017 'default' => false, 5018 ), 5019 'image_id' => 5020 array ( 5021 'length' => 11, 5022 'type' => 'int', 5023 'default' => NULL, 5024 ), 5025 'main_node_only' => 5026 array ( 5027 'length' => 11, 5028 'type' => 'int', 5029 'not_null' => '1', 5030 'default' => 1, 5031 ), 5032 'modified' => 5033 array ( 5034 'length' => 11, 5035 'type' => 'int', 5036 'default' => NULL, 5037 ), 5038 'modifier_id' => 5039 array ( 5040 'length' => 11, 5041 'type' => 'int', 5042 'default' => NULL, 5043 ), 5044 'number_of_objects' => 5045 array ( 5046 'length' => 11, 5047 'type' => 'int', 5048 'not_null' => '1', 5049 'default' => 0, 5050 ), 5051 'rss_version' => 5052 array ( 5053 'length' => 255, 5054 'type' => 'varchar', 5055 'default' => NULL, 5056 ), 5057 'site_access' => 5058 array ( 5059 'length' => 255, 5060 'type' => 'varchar', 5061 'default' => NULL, 5062 ), 5063 'status' => 5064 array ( 5065 'length' => 11, 5066 'type' => 'int', 5067 'not_null' => '1', 5068 'default' => 0, 5069 ), 5070 'title' => 5071 array ( 5072 'length' => 255, 5073 'type' => 'varchar', 5074 'default' => NULL, 5075 ), 5076 'url' => 5077 array ( 5078 'length' => 255, 5079 'type' => 'varchar', 5080 'default' => NULL, 5081 ), 5082 ), 5083 'indexes' => 5084 array ( 5085 'PRIMARY' => 5086 array ( 5087 'type' => 'primary', 5088 'fields' => 5089 array ( 5090 0 => 'id', 5091 1 => 'status', 5092 ), 5093 ), 5094 ), 5095 ), 5096 'ezrss_export_item' => 5097 array ( 5098 'name' => 'ezrss_export_item', 5099 'fields' => 5100 array ( 5101 'class_id' => 5102 array ( 5103 'length' => 11, 5104 'type' => 'int', 5105 'default' => NULL, 5106 ), 5107 'description' => 5108 array ( 5109 'length' => 255, 5110 'type' => 'varchar', 5111 'default' => NULL, 5112 ), 5113 'id' => 5114 array ( 5115 'type' => 'auto_increment', 5116 'default' => false, 5117 ), 5118 'rssexport_id' => 5119 array ( 5120 'length' => 11, 5121 'type' => 'int', 5122 'default' => NULL, 5123 ), 5124 'source_node_id' => 5125 array ( 5126 'length' => 11, 5127 'type' => 'int', 5128 'default' => NULL, 5129 ), 5130 'status' => 5131 array ( 5132 'length' => 11, 5133 'type' => 'int', 5134 'not_null' => '1', 5135 'default' => 0, 5136 ), 5137 'subnodes' => 5138 array ( 5139 'length' => 11, 5140 'type' => 'int', 5141 'not_null' => '1', 5142 'default' => 0, 5143 ), 5144 'title' => 5145 array ( 5146 'length' => 255, 5147 'type' => 'varchar', 5148 'default' => NULL, 5149 ), 5150 ), 5151 'indexes' => 5152 array ( 5153 'PRIMARY' => 5154 array ( 5155 'type' => 'primary', 5156 'fields' => 5157 array ( 5158 0 => 'id', 5159 1 => 'status', 5160 ), 5161 ), 5162 'ezrss_export_rsseid' => 5163 array ( 5164 'type' => 'non-unique', 5165 'fields' => 5166 array ( 5167 0 => 'rssexport_id', 5168 ), 5169 ), 5170 ), 5171 ), 5172 'ezrss_import' => 5173 array ( 5174 'name' => 'ezrss_import', 5175 'fields' => 5176 array ( 5177 'active' => 5178 array ( 5179 'length' => 11, 5180 'type' => 'int', 5181 'default' => NULL, 5182 ), 5183 'class_description' => 5184 array ( 5185 'length' => 255, 5186 'type' => 'varchar', 5187 'default' => NULL, 5188 ), 5189 'class_id' => 5190 array ( 5191 'length' => 11, 5192 'type' => 'int', 5193 'default' => NULL, 5194 ), 5195 'class_title' => 5196 array ( 5197 'length' => 255, 5198 'type' => 'varchar', 5199 'default' => NULL, 5200 ), 5201 'class_url' => 5202 array ( 5203 'length' => 255, 5204 'type' => 'varchar', 5205 'default' => NULL, 5206 ), 5207 'created' => 5208 array ( 5209 'length' => 11, 5210 'type' => 'int', 5211 'default' => NULL, 5212 ), 5213 'creator_id' => 5214 array ( 5215 'length' => 11, 5216 'type' => 'int', 5217 'default' => NULL, 5218 ), 5219 'destination_node_id' => 5220 array ( 5221 'length' => 11, 5222 'type' => 'int', 5223 'default' => NULL, 5224 ), 5225 'id' => 5226 array ( 5227 'type' => 'auto_increment', 5228 'default' => false, 5229 ), 5230 'import_description' => 5231 array ( 5232 'type' => 'longtext', 5233 'not_null' => '1', 5234 'default' => false, 5235 ), 5236 'modified' => 5237 array ( 5238 'length' => 11, 5239 'type' => 'int', 5240 'default' => NULL, 5241 ), 5242 'modifier_id' => 5243 array ( 5244 'length' => 11, 5245 'type' => 'int', 5246 'default' => NULL, 5247 ), 5248 'name' => 5249 array ( 5250 'length' => 255, 5251 'type' => 'varchar', 5252 'default' => NULL, 5253 ), 5254 'object_owner_id' => 5255 array ( 5256 'length' => 11, 5257 'type' => 'int', 5258 'default' => NULL, 5259 ), 5260 'status' => 5261 array ( 5262 'length' => 11, 5263 'type' => 'int', 5264 'not_null' => '1', 5265 'default' => 0, 5266 ), 5267 'url' => 5268 array ( 5269 'type' => 'longtext', 5270 'default' => false, 5271 ), 5272 ), 5273 'indexes' => 5274 array ( 5275 'PRIMARY' => 5276 array ( 5277 'type' => 'primary', 5278 'fields' => 5279 array ( 5280 0 => 'id', 5281 1 => 'status', 5282 ), 5283 ), 5284 ), 5285 ), 5286 'ezsearch_object_word_link' => 5287 array ( 5288 'name' => 'ezsearch_object_word_link', 5289 'fields' => 5290 array ( 5291 'contentclass_attribute_id' => 5292 array ( 5293 'length' => 11, 5294 'type' => 'int', 5295 'not_null' => '1', 5296 'default' => 0, 5297 ), 5298 'contentclass_id' => 5299 array ( 5300 'length' => 11, 5301 'type' => 'int', 5302 'not_null' => '1', 5303 'default' => 0, 5304 ), 5305 'contentobject_id' => 5306 array ( 5307 'length' => 11, 5308 'type' => 'int', 5309 'not_null' => '1', 5310 'default' => 0, 5311 ), 5312 'frequency' => 5313 array ( 5314 'type' => 'float', 5315 'not_null' => '1', 5316 'default' => 0, 5317 ), 5318 'id' => 5319 array ( 5320 'type' => 'auto_increment', 5321 'default' => false, 5322 ), 5323 'identifier' => 5324 array ( 5325 'length' => 255, 5326 'type' => 'varchar', 5327 'not_null' => '1', 5328 'default' => '', 5329 ), 5330 'integer_value' => 5331 array ( 5332 'length' => 11, 5333 'type' => 'int', 5334 'not_null' => '1', 5335 'default' => 0, 5336 ), 5337 'next_word_id' => 5338 array ( 5339 'length' => 11, 5340 'type' => 'int', 5341 'not_null' => '1', 5342 'default' => 0, 5343 ), 5344 'placement' => 5345 array ( 5346 'length' => 11, 5347 'type' => 'int', 5348 'not_null' => '1', 5349 'default' => 0, 5350 ), 5351 'prev_word_id' => 5352 array ( 5353 'length' => 11, 5354 'type' => 'int', 5355 'not_null' => '1', 5356 'default' => 0, 5357 ), 5358 'published' => 5359 array ( 5360 'length' => 11, 5361 'type' => 'int', 5362 'not_null' => '1', 5363 'default' => 0, 5364 ), 5365 'section_id' => 5366 array ( 5367 'length' => 11, 5368 'type' => 'int', 5369 'not_null' => '1', 5370 'default' => 0, 5371 ), 5372 'word_id' => 5373 array ( 5374 'length' => 11, 5375 'type' => 'int', 5376 'not_null' => '1', 5377 'default' => 0, 5378 ), 5379 ), 5380 'indexes' => 5381 array ( 5382 'PRIMARY' => 5383 array ( 5384 'type' => 'primary', 5385 'fields' => 5386 array ( 5387 0 => 'id', 5388 ), 5389 ), 5390 'ezsearch_object_word_link_frequency' => 5391 array ( 5392 'type' => 'non-unique', 5393 'fields' => 5394 array ( 5395 0 => 'frequency', 5396 ), 5397 ), 5398 'ezsearch_object_word_link_identifier' => 5399 array ( 5400 'type' => 'non-unique', 5401 'fields' => 5402 array ( 5403 0 => 'identifier', 5404 ), 5405 ), 5406 'ezsearch_object_word_link_integer_value' => 5407 array ( 5408 'type' => 'non-unique', 5409 'fields' => 5410 array ( 5411 0 => 'integer_value', 5412 ), 5413 ), 5414 'ezsearch_object_word_link_object' => 5415 array ( 5416 'type' => 'non-unique', 5417 'fields' => 5418 array ( 5419 0 => 'contentobject_id', 5420 ), 5421 ), 5422 'ezsearch_object_word_link_word' => 5423 array ( 5424 'type' => 'non-unique', 5425 'fields' => 5426 array ( 5427 0 => 'word_id', 5428 ), 5429 ), 5430 ), 5431 ), 5432 'ezsearch_return_count' => 5433 array ( 5434 'name' => 'ezsearch_return_count', 5435 'fields' => 5436 array ( 5437 'count' => 5438 array ( 5439 'length' => 11, 5440 'type' => 'int', 5441 'not_null' => '1', 5442 'default' => 0, 5443 ), 5444 'id' => 5445 array ( 5446 'type' => 'auto_increment', 5447 'default' => false, 5448 ), 5449 'phrase_id' => 5450 array ( 5451 'length' => 11, 5452 'type' => 'int', 5453 'not_null' => '1', 5454 'default' => 0, 5455 ), 5456 'time' => 5457 array ( 5458 'length' => 11, 5459 'type' => 'int', 5460 'not_null' => '1', 5461 'default' => 0, 5462 ), 5463 ), 5464 'indexes' => 5465 array ( 5466 'PRIMARY' => 5467 array ( 5468 'type' => 'primary', 5469 'fields' => 5470 array ( 5471 0 => 'id', 5472 ), 5473 ), 5474 'ezsearch_return_cnt_ph_id_cnt' => 5475 array ( 5476 'type' => 'non-unique', 5477 'fields' => 5478 array ( 5479 0 => 'phrase_id', 5480 1 => 'count', 5481 ), 5482 ), 5483 ), 5484 ), 5485 'ezsearch_search_phrase' => 5486 array ( 5487 'name' => 'ezsearch_search_phrase', 5488 'fields' => 5489 array ( 5490 'id' => 5491 array ( 5492 'type' => 'auto_increment', 5493 'default' => false, 5494 ), 5495 'phrase' => 5496 array ( 5497 'length' => 250, 5498 'type' => 'varchar', 5499 'default' => NULL, 5500 ), 5501 'phrase_count' => 5502 array ( 5503 'length' => 11, 5504 'type' => 'int', 5505 'default' => 0, 5506 ), 5507 'result_count' => 5508 array ( 5509 'length' => 11, 5510 'type' => 'int', 5511 'default' => 0, 5512 ), 5513 ), 5514 'indexes' => 5515 array ( 5516 'PRIMARY' => 5517 array ( 5518 'type' => 'primary', 5519 'fields' => 5520 array ( 5521 0 => 'id', 5522 ), 5523 ), 5524 'ezsearch_search_phrase_count' => 5525 array ( 5526 'type' => 'non-unique', 5527 'fields' => 5528 array ( 5529 0 => 'phrase_count', 5530 ), 5531 ), 5532 'ezsearch_search_phrase_phrase' => 5533 array ( 5534 'type' => 'unique', 5535 'fields' => 5536 array ( 5537 0 => 'phrase', 5538 ), 5539 ), 5540 ), 5541 ), 5542 'ezsearch_word' => 5543 array ( 5544 'name' => 'ezsearch_word', 5545 'fields' => 5546 array ( 5547 'id' => 5548 array ( 5549 'type' => 'auto_increment', 5550 'default' => false, 5551 ), 5552 'object_count' => 5553 array ( 5554 'length' => 11, 5555 'type' => 'int', 5556 'not_null' => '1', 5557 'default' => 0, 5558 ), 5559 'word' => 5560 array ( 5561 'length' => 150, 5562 'type' => 'varchar', 5563 'default' => NULL, 5564 ), 5565 ), 5566 'indexes' => 5567 array ( 5568 'PRIMARY' => 5569 array ( 5570 'type' => 'primary', 5571 'fields' => 5572 array ( 5573 0 => 'id', 5574 ), 5575 ), 5576 'ezsearch_word_word_i' => 5577 array ( 5578 'type' => 'non-unique', 5579 'fields' => 5580 array ( 5581 0 => 'word', 5582 ), 5583 ), 5584 ), 5585 ), 5586 'ezsection' => 5587 array ( 5588 'name' => 'ezsection', 5589 'fields' => 5590 array ( 5591 'id' => 5592 array ( 5593 'type' => 'auto_increment', 5594 'default' => false, 5595 ), 5596 'locale' => 5597 array ( 5598 'length' => 255, 5599 'type' => 'varchar', 5600 'default' => NULL, 5601 ), 5602 'name' => 5603 array ( 5604 'length' => 255, 5605 'type' => 'varchar', 5606 'default' => NULL, 5607 ), 5608 'navigation_part_identifier' => 5609 array ( 5610 'length' => 100, 5611 'type' => 'varchar', 5612 'default' => 'ezcontentnavigationpart', 5613 ), 5614 ), 5615 'indexes' => 5616 array ( 5617 'PRIMARY' => 5618 array ( 5619 'type' => 'primary', 5620 'fields' => 5621 array ( 5622 0 => 'id', 5623 ), 5624 ), 5625 ), 5626 ), 5627 'ezsession' => 5628 array ( 5629 'name' => 'ezsession', 5630 'fields' => 5631 array ( 5632 'data' => 5633 array ( 5634 'type' => 'longtext', 5635 'not_null' => '1', 5636 'default' => false, 5637 ), 5638 'expiration_time' => 5639 array ( 5640 'length' => 11, 5641 'type' => 'int', 5642 'not_null' => '1', 5643 'default' => 0, 5644 ), 5645 'session_key' => 5646 array ( 5647 'length' => 32, 5648 'type' => 'varchar', 5649 'not_null' => '1', 5650 'default' => '', 5651 ), 5652 'user_id' => 5653 array ( 5654 'length' => 11, 5655 'type' => 'int', 5656 'not_null' => '1', 5657 'default' => 0, 5658 ), 5659 ), 5660 'indexes' => 5661 array ( 5662 'PRIMARY' => 5663 array ( 5664 'type' => 'primary', 5665 'fields' => 5666 array ( 5667 0 => 'session_key', 5668 ), 5669 ), 5670 'expiration_time' => 5671 array ( 5672 'type' => 'non-unique', 5673 'fields' => 5674 array ( 5675 0 => 'expiration_time', 5676 ), 5677 ), 5678 'ezsession_user_id' => 5679 array ( 5680 'type' => 'non-unique', 5681 'fields' => 5682 array ( 5683 0 => 'user_id', 5684 ), 5685 ), 5686 ), 5687 ), 5688 'ezsite_data' => 5689 array ( 5690 'name' => 'ezsite_data', 5691 'fields' => 5692 array ( 5693 'name' => 5694 array ( 5695 'length' => 60, 5696 'type' => 'varchar', 5697 'not_null' => '1', 5698 'default' => '', 5699 ), 5700 'value' => 5701 array ( 5702 'type' => 'longtext', 5703 'not_null' => '1', 5704 'default' => false, 5705 ), 5706 ), 5707 'indexes' => 5708 array ( 5709 'PRIMARY' => 5710 array ( 5711 'type' => 'primary', 5712 'fields' => 5713 array ( 5714 0 => 'name', 5715 ), 5716 ), 5717 ), 5718 ), 5719 'ezsubtree_notification_rule' => 5720 array ( 5721 'name' => 'ezsubtree_notification_rule', 5722 'fields' => 5723 array ( 5724 'id' => 5725 array ( 5726 'type' => 'auto_increment', 5727 'default' => false, 5728 ), 5729 'node_id' => 5730 array ( 5731 'length' => 11, 5732 'type' => 'int', 5733 'not_null' => '1', 5734 'default' => 0, 5735 ), 5736 'use_digest' => 5737 array ( 5738 'length' => 11, 5739 'type' => 'int', 5740 'default' => 0, 5741 ), 5742 'user_id' => 5743 array ( 5744 'length' => 11, 5745 'type' => 'int', 5746 'not_null' => '1', 5747 'default' => 0, 5748 ), 5749 ), 5750 'indexes' => 5751 array ( 5752 'PRIMARY' => 5753 array ( 5754 'type' => 'primary', 5755 'fields' => 5756 array ( 5757 0 => 'id', 5758 ), 5759 ), 5760 'ezsubtree_notification_rule_user_id' => 5761 array ( 5762 'type' => 'non-unique', 5763 'fields' => 5764 array ( 5765 0 => 'user_id', 5766 ), 5767 ), 5768 ), 5769 ), 5770 'eztipafriend_counter' => 5771 array ( 5772 'name' => 'eztipafriend_counter', 5773 'fields' => 5774 array ( 5775 'count' => 5776 array ( 5777 'length' => 11, 5778 'type' => 'int', 5779 'not_null' => '1', 5780 'default' => 0, 5781 ), 5782 'node_id' => 5783 array ( 5784 'length' => 11, 5785 'type' => 'int', 5786 'not_null' => '1', 5787 'default' => 0, 5788 ), 5789 'requested' => 5790 array ( 5791 'length' => 11, 5792 'type' => 'int', 5793 'not_null' => '1', 5794 'default' => 0, 5795 ), 5796 ), 5797 'indexes' => 5798 array ( 5799 'PRIMARY' => 5800 array ( 5801 'type' => 'primary', 5802 'fields' => 5803 array ( 5804 0 => 'node_id', 5805 1 => 'requested', 5806 ), 5807 ), 5808 ), 5809 ), 5810 'eztipafriend_request' => 5811 array ( 5812 'name' => 'eztipafriend_request', 5813 'fields' => 5814 array ( 5815 'created' => 5816 array ( 5817 'length' => 11, 5818 'type' => 'int', 5819 'not_null' => '1', 5820 'default' => 0, 5821 ), 5822 'email_receiver' => 5823 array ( 5824 'length' => 100, 5825 'type' => 'varchar', 5826 'not_null' => '1', 5827 'default' => '', 5828 ), 5829 ), 5830 'indexes' => 5831 array ( 5832 'eztipafriend_request_created' => 5833 array ( 5834 'type' => 'non-unique', 5835 'fields' => 5836 array ( 5837 0 => 'created', 5838 ), 5839 ), 5840 'eztipafriend_request_email_rec' => 5841 array ( 5842 'type' => 'non-unique', 5843 'fields' => 5844 array ( 5845 0 => 'email_receiver', 5846 ), 5847 ), 5848 ), 5849 ), 5850 'eztrigger' => 5851 array ( 5852 'name' => 'eztrigger', 5853 'fields' => 5854 array ( 5855 'connect_type' => 5856 array ( 5857 'length' => 1, 5858 'type' => 'char', 5859 'not_null' => '1', 5860 'default' => '', 5861 ), 5862 'function_name' => 5863 array ( 5864 'length' => 200, 5865 'type' => 'varchar', 5866 'not_null' => '1', 5867 'default' => '', 5868 ), 5869 'id' => 5870 array ( 5871 'type' => 'auto_increment', 5872 'default' => false, 5873 ), 5874 'module_name' => 5875 array ( 5876 'length' => 200, 5877 'type' => 'varchar', 5878 'not_null' => '1', 5879 'default' => '', 5880 ), 5881 'name' => 5882 array ( 5883 'length' => 255, 5884 'type' => 'varchar', 5885 'default' => NULL, 5886 ), 5887 'workflow_id' => 5888 array ( 5889 'length' => 11, 5890 'type' => 'int', 5891 'default' => NULL, 5892 ), 5893 ), 5894 'indexes' => 5895 array ( 5896 'PRIMARY' => 5897 array ( 5898 'type' => 'primary', 5899 'fields' => 5900 array ( 5901 0 => 'id', 5902 ), 5903 ), 5904 'eztrigger_def_id' => 5905 array ( 5906 'type' => 'unique', 5907 'fields' => 5908 array ( 5909 0 => 'module_name', 5910 1 => 'function_name', 5911 2 => 'connect_type', 5912 ), 5913 ), 5914 'eztrigger_fetch' => 5915 array ( 5916 'type' => 'non-unique', 5917 'fields' => 5918 array ( 5919 0 => 'name', 5920 1 => 'module_name', 5921 2 => 'function_name', 5922 ), 5923 ), 5924 ), 5925 ), 5926 'ezurl' => 5927 array ( 5928 'name' => 'ezurl', 5929 'fields' => 5930 array ( 5931 'created' => 5932 array ( 5933 'length' => 11, 5934 'type' => 'int', 5935 'not_null' => '1', 5936 'default' => 0, 5937 ), 5938 'id' => 5939 array ( 5940 'type' => 'auto_increment', 5941 'default' => false, 5942 ), 5943 'is_valid' => 5944 array ( 5945 'length' => 11, 5946 'type' => 'int', 5947 'not_null' => '1', 5948 'default' => 1, 5949 ), 5950 'last_checked' => 5951 array ( 5952 'length' => 11, 5953 'type' => 'int', 5954 'not_null' => '1', 5955 'default' => 0, 5956 ), 5957 'modified' => 5958 array ( 5959 'length' => 11, 5960 'type' => 'int', 5961 'not_null' => '1', 5962 'default' => 0, 5963 ), 5964 'original_url_md5' => 5965 array ( 5966 'length' => 32, 5967 'type' => 'varchar', 5968 'not_null' => '1', 5969 'default' => '', 5970 ), 5971 'url' => 5972 array ( 5973 'length' => 255, 5974 'type' => 'varchar', 5975 'default' => NULL, 5976 ), 5977 ), 5978 'indexes' => 5979 array ( 5980 'PRIMARY' => 5981 array ( 5982 'type' => 'primary', 5983 'fields' => 5984 array ( 5985 0 => 'id', 5986 ), 5987 ), 5988 'ezurl_url' => 5989 array ( 5990 'type' => 'non-unique', 5991 'fields' => 5992 array ( 5993 0 => 'url', 5994 ), 5995 ), 5996 ), 5997 ), 5998 'ezurl_object_link' => 5999 array ( 6000 'name' => 'ezurl_object_link', 6001 'fields' => 6002 array ( 6003 'contentobject_attribute_id' => 6004 array ( 6005 'length' => 11, 6006 'type' => 'int', 6007 'not_null' => '1', 6008 'default' => 0, 6009 ), 6010 'contentobject_attribute_version' => 6011 array ( 6012 'length' => 11, 6013 'type' => 'int', 6014 'not_null' => '1', 6015 'default' => 0, 6016 ), 6017 'url_id' => 6018 array ( 6019 'length' => 11, 6020 'type' => 'int', 6021 'not_null' => '1', 6022 'default' => 0, 6023 ), 6024 ), 6025 'indexes' => 6026 array ( 6027 'ezurl_ol_coa_id' => 6028 array ( 6029 'type' => 'non-unique', 6030 'fields' => 6031 array ( 6032 0 => 'contentobject_attribute_id', 6033 ), 6034 ), 6035 'ezurl_ol_coa_version' => 6036 array ( 6037 'type' => 'non-unique', 6038 'fields' => 6039 array ( 6040 0 => 'contentobject_attribute_version', 6041 ), 6042 ), 6043 'ezurl_ol_url_id' => 6044 array ( 6045 'type' => 'non-unique', 6046 'fields' => 6047 array ( 6048 0 => 'url_id', 6049 ), 6050 ), 6051 ), 6052 ), 6053 'ezurlalias' => 6054 array ( 6055 'name' => 'ezurlalias', 6056 'fields' => 6057 array ( 6058 'destination_url' => 6059 array ( 6060 'type' => 'longtext', 6061 'not_null' => '1', 6062 'default' => false, 6063 ), 6064 'forward_to_id' => 6065 array ( 6066 'length' => 11, 6067 'type' => 'int', 6068 'not_null' => '1', 6069 'default' => 0, 6070 ), 6071 'id' => 6072 array ( 6073 'type' => 'auto_increment', 6074 'default' => false, 6075 ), 6076 'is_internal' => 6077 array ( 6078 'length' => 11, 6079 'type' => 'int', 6080 'not_null' => '1', 6081 'default' => 1, 6082 ), 6083 'is_wildcard' => 6084 array ( 6085 'length' => 11, 6086 'type' => 'int', 6087 'not_null' => '1', 6088 'default' => 0, 6089 ), 6090 'source_md5' => 6091 array ( 6092 'length' => 32, 6093 'type' => 'varchar', 6094 'default' => NULL, 6095 ), 6096 'source_url' => 6097 array ( 6098 'type' => 'longtext', 6099 'not_null' => '1', 6100 'default' => false, 6101 ), 6102 ), 6103 'indexes' => 6104 array ( 6105 'PRIMARY' => 6106 array ( 6107 'type' => 'primary', 6108 'fields' => 6109 array ( 6110 0 => 'id', 6111 ), 6112 ), 6113 'ezurlalias_desturl' => 6114 array ( 6115 'type' => 'non-unique', 6116 'fields' => 6117 array ( 6118 0 => 'destination_url', 6119 ), 6120 ), 6121 'ezurlalias_forward_to_id' => 6122 array ( 6123 'type' => 'non-unique', 6124 'fields' => 6125 array ( 6126 0 => 'forward_to_id', 6127 ), 6128 ), 6129 'ezurlalias_is_wildcard' => 6130 array ( 6131 'type' => 'non-unique', 6132 'fields' => 6133 array ( 6134 0 => 'is_wildcard', 6135 ), 6136 ), 6137 'ezurlalias_source_md5' => 6138 array ( 6139 'type' => 'non-unique', 6140 'fields' => 6141 array ( 6142 0 => 'source_md5', 6143 ), 6144 ), 6145 'ezurlalias_source_url' => 6146 array ( 6147 'type' => 'non-unique', 6148 'fields' => 6149 array ( 6150 0 => 'source_url', 6151 ), 6152 ), 6153 ), 6154 ), 6155 'ezuser' => 6156 array ( 6157 'name' => 'ezuser', 6158 'fields' => 6159 array ( 6160 'contentobject_id' => 6161 array ( 6162 'length' => 11, 6163 'type' => 'int', 6164 'not_null' => '1', 6165 'default' => 0, 6166 ), 6167 'email' => 6168 array ( 6169 'length' => 150, 6170 'type' => 'varchar', 6171 'not_null' => '1', 6172 'default' => '', 6173 ), 6174 'login' => 6175 array ( 6176 'length' => 150, 6177 'type' => 'varchar', 6178 'not_null' => '1', 6179 'default' => '', 6180 ), 6181 'password_hash' => 6182 array ( 6183 'length' => 50, 6184 'type' => 'varchar', 6185 'default' => NULL, 6186 ), 6187 'password_hash_type' => 6188 array ( 6189 'length' => 11, 6190 'type' => 'int', 6191 'not_null' => '1', 6192 'default' => 1, 6193 ), 6194 ), 6195 'indexes' => 6196 array ( 6197 'PRIMARY' => 6198 array ( 6199 'type' => 'primary', 6200 'fields' => 6201 array ( 6202 0 => 'contentobject_id', 6203 ), 6204 ), 6205 ), 6206 ), 6207 'ezuser_accountkey' => 6208 array ( 6209 'name' => 'ezuser_accountkey', 6210 'fields' => 6211 array ( 6212 'hash_key' => 6213 array ( 6214 'length' => 32, 6215 'type' => 'varchar', 6216 'not_null' => '1', 6217 'default' => '', 6218 ), 6219 'id' => 6220 array ( 6221 'type' => 'auto_increment', 6222 'default' => false, 6223 ), 6224 'time' => 6225 array ( 6226 'length' => 11, 6227 'type' => 'int', 6228 'not_null' => '1', 6229 'default' => 0, 6230 ), 6231 'user_id' => 6232 array ( 6233 'length' => 11, 6234 'type' => 'int', 6235 'not_null' => '1', 6236 'default' => 0, 6237 ), 6238 ), 6239 'indexes' => 6240 array ( 6241 'PRIMARY' => 6242 array ( 6243 'type' => 'primary', 6244 'fields' => 6245 array ( 6246 0 => 'id', 6247 ), 6248 ), 6249 ), 6250 ), 6251 'ezuser_discountrule' => 6252 array ( 6253 'name' => 'ezuser_discountrule', 6254 'fields' => 6255 array ( 6256 'contentobject_id' => 6257 array ( 6258 'length' => 11, 6259 'type' => 'int', 6260 'default' => NULL, 6261 ), 6262 'discountrule_id' => 6263 array ( 6264 'length' => 11, 6265 'type' => 'int', 6266 'default' => NULL, 6267 ), 6268 'id' => 6269 array ( 6270 'type' => 'auto_increment', 6271 'default' => false, 6272 ), 6273 'name' => 6274 array ( 6275 'length' => 255, 6276 'type' => 'varchar', 6277 'not_null' => '1', 6278 'default' => '', 6279 ), 6280 ), 6281 'indexes' => 6282 array ( 6283 'PRIMARY' => 6284 array ( 6285 'type' => 'primary', 6286 'fields' => 6287 array ( 6288 0 => 'id', 6289 ), 6290 ), 6291 ), 6292 ), 6293 'ezuser_role' => 6294 array ( 6295 'name' => 'ezuser_role', 6296 'fields' => 6297 array ( 6298 'contentobject_id' => 6299 array ( 6300 'length' => 11, 6301 'type' => 'int', 6302 'default' => NULL, 6303 ), 6304 'id' => 6305 array ( 6306 'type' => 'auto_increment', 6307 'default' => false, 6308 ), 6309 'limit_identifier' => 6310 array ( 6311 'length' => 255, 6312 'type' => 'varchar', 6313 'default' => '', 6314 ), 6315 'limit_value' => 6316 array ( 6317 'length' => 255, 6318 'type' => 'varchar', 6319 'default' => '', 6320 ), 6321 'role_id' => 6322 array ( 6323 'length' => 11, 6324 'type' => 'int', 6325 'default' => NULL, 6326 ), 6327 ), 6328 'indexes' => 6329 array ( 6330 'PRIMARY' => 6331 array ( 6332 'type' => 'primary', 6333 'fields' => 6334 array ( 6335 0 => 'id', 6336 ), 6337 ), 6338 'ezuser_role_contentobject_id' => 6339 array ( 6340 'type' => 'non-unique', 6341 'fields' => 6342 array ( 6343 0 => 'contentobject_id', 6344 ), 6345 ), 6346 'ezuser_role_role_id' => 6347 array ( 6348 'type' => 'non-unique', 6349 'fields' => 6350 array ( 6351 0 => 'role_id', 6352 ), 6353 ), 6354 ), 6355 ), 6356 'ezuser_setting' => 6357 array ( 6358 'name' => 'ezuser_setting', 6359 'fields' => 6360 array ( 6361 'is_enabled' => 6362 array ( 6363 'length' => 11, 6364 'type' => 'int', 6365 'not_null' => '1', 6366 'default' => 0, 6367 ), 6368 'max_login' => 6369 array ( 6370 'length' => 11, 6371 'type' => 'int', 6372 'default' => NULL, 6373 ), 6374 'user_id' => 6375 array ( 6376 'length' => 11, 6377 'type' => 'int', 6378 'not_null' => '1', 6379 'default' => 0, 6380 ), 6381 ), 6382 'indexes' => 6383 array ( 6384 'PRIMARY' => 6385 array ( 6386 'type' => 'primary', 6387 'fields' => 6388 array ( 6389 0 => 'user_id', 6390 ), 6391 ), 6392 ), 6393 ), 6394 'ezuservisit' => 6395 array ( 6396 'name' => 'ezuservisit', 6397 'fields' => 6398 array ( 6399 'current_visit_timestamp' => 6400 array ( 6401 'length' => 11, 6402 'type' => 'int', 6403 'not_null' => '1', 6404 'default' => 0, 6405 ), 6406 'failed_login_attempts' => 6407 array ( 6408 'length' => 11, 6409 'type' => 'int', 6410 'not_null' => '1', 6411 'default' => 0, 6412 ), 6413 'last_visit_timestamp' => 6414 array ( 6415 'length' => 11, 6416 'type' => 'int', 6417 'not_null' => '1', 6418 'default' => 0, 6419 ), 6420 'user_id' => 6421 array ( 6422 'length' => 11, 6423 'type' => 'int', 6424 'not_null' => '1', 6425 'default' => 0, 6426 ), 6427 ), 6428 'indexes' => 6429 array ( 6430 'PRIMARY' => 6431 array ( 6432 'type' => 'primary', 6433 'fields' => 6434 array ( 6435 0 => 'user_id', 6436 ), 6437 ), 6438 ), 6439 ), 6440 'ezvatrule' => 6441 array ( 6442 'name' => 'ezvatrule', 6443 'fields' => 6444 array ( 6445 'country' => 6446 array ( 6447 'length' => 255, 6448 'type' => 'varchar', 6449 'not_null' => '1', 6450 'default' => '', 6451 ), 6452 'id' => 6453 array ( 6454 'type' => 'auto_increment', 6455 'default' => false, 6456 ), 6457 'vat_type' => 6458 array ( 6459 'length' => 11, 6460 'type' => 'int', 6461 'not_null' => '1', 6462 'default' => 0, 6463 ), 6464 ), 6465 'indexes' => 6466 array ( 6467 'PRIMARY' => 6468 array ( 6469 'type' => 'primary', 6470 'fields' => 6471 array ( 6472 0 => 'id', 6473 ), 6474 ), 6475 ), 6476 ), 6477 'ezvatrule_product_category' => 6478 array ( 6479 'name' => 'ezvatrule_product_category', 6480 'fields' => 6481 array ( 6482 'product_category_id' => 6483 array ( 6484 'length' => 11, 6485 'type' => 'int', 6486 'not_null' => '1', 6487 'default' => 0, 6488 ), 6489 'vatrule_id' => 6490 array ( 6491 'length' => 11, 6492 'type' => 'int', 6493 'not_null' => '1', 6494 'default' => 0, 6495 ), 6496 ), 6497 'indexes' => 6498 array ( 6499 'PRIMARY' => 6500 array ( 6501 'type' => 'primary', 6502 'fields' => 6503 array ( 6504 0 => 'vatrule_id', 6505 1 => 'product_category_id', 6506 ), 6507 ), 6508 ), 6509 ), 6510 'ezvattype' => 6511 array ( 6512 'name' => 'ezvattype', 6513 'fields' => 6514 array ( 6515 'id' => 6516 array ( 6517 'type' => 'auto_increment', 6518 'default' => false, 6519 ), 6520 'name' => 6521 array ( 6522 'length' => 255, 6523 'type' => 'varchar', 6524 'not_null' => '1', 6525 'default' => '', 6526 ), 6527 'percentage' => 6528 array ( 6529 'type' => 'float', 6530 'default' => NULL, 6531 ), 6532 ), 6533 'indexes' => 6534 array ( 6535 'PRIMARY' => 6536 array ( 6537 'type' => 'primary', 6538 'fields' => 6539 array ( 6540 0 => 'id', 6541 ), 6542 ), 6543 ), 6544 ), 6545 'ezview_counter' => 6546 array ( 6547 'name' => 'ezview_counter', 6548 'fields' => 6549 array ( 6550 'count' => 6551 array ( 6552 'length' => 11, 6553 'type' => 'int', 6554 'not_null' => '1', 6555 'default' => 0, 6556 ), 6557 'node_id' => 6558 array ( 6559 'length' => 11, 6560 'type' => 'int', 6561 'not_null' => '1', 6562 'default' => 0, 6563 ), 6564 ), 6565 'indexes' => 6566 array ( 6567 'PRIMARY' => 6568 array ( 6569 'type' => 'primary', 6570 'fields' => 6571 array ( 6572 0 => 'node_id', 6573 ), 6574 ), 6575 ), 6576 ), 6577 'ezwaituntildatevalue' => 6578 array ( 6579 'name' => 'ezwaituntildatevalue', 6580 'fields' => 6581 array ( 6582 'contentclass_attribute_id' => 6583 array ( 6584 'length' => 11, 6585 'type' => 'int', 6586 'not_null' => '1', 6587 'default' => 0, 6588 ), 6589 'contentclass_id' => 6590 array ( 6591 'length' => 11, 6592 'type' => 'int', 6593 'not_null' => '1', 6594 'default' => 0, 6595 ), 6596 'id' => 6597 array ( 6598 'type' => 'auto_increment', 6599 'default' => false, 6600 ), 6601 'workflow_event_id' => 6602 array ( 6603 'length' => 11, 6604 'type' => 'int', 6605 'not_null' => '1', 6606 'default' => 0, 6607 ), 6608 'workflow_event_version' => 6609 array ( 6610 'length' => 11, 6611 'type' => 'int', 6612 'not_null' => '1', 6613 'default' => 0, 6614 ), 6615 ), 6616 'indexes' => 6617 array ( 6618 'PRIMARY' => 6619 array ( 6620 'type' => 'primary', 6621 'fields' => 6622 array ( 6623 0 => 'id', 6624 1 => 'workflow_event_id', 6625 2 => 'workflow_event_version', 6626 ), 6627 ), 6628 'ezwaituntildateevalue_wf_ev_id_wf_ver' => 6629 array ( 6630 'type' => 'non-unique', 6631 'fields' => 6632 array ( 6633 0 => 'workflow_event_id', 6634 1 => 'workflow_event_version', 6635 ), 6636 ), 6637 ), 6638 ), 6639 'ezwishlist' => 6640 array ( 6641 'name' => 'ezwishlist', 6642 'fields' => 6643 array ( 6644 'id' => 6645 array ( 6646 'type' => 'auto_increment', 6647 'default' => false, 6648 ), 6649 'productcollection_id' => 6650 array ( 6651 'length' => 11, 6652 'type' => 'int', 6653 'not_null' => '1', 6654 'default' => 0, 6655 ), 6656 'user_id' => 6657 array ( 6658 'length' => 11, 6659 'type' => 'int', 6660 'not_null' => '1', 6661 'default' => 0, 6662 ), 6663 ), 6664 'indexes' => 6665 array ( 6666 'PRIMARY' => 6667 array ( 6668 'type' => 'primary', 6669 'fields' => 6670 array ( 6671 0 => 'id', 6672 ), 6673 ), 6674 ), 6675 ), 6676 'ezworkflow' => 6677 array ( 6678 'name' => 'ezworkflow', 6679 'fields' => 6680 array ( 6681 'created' => 6682 array ( 6683 'length' => 11, 6684 'type' => 'int', 6685 'not_null' => '1', 6686 'default' => 0, 6687 ), 6688 'creator_id' => 6689 array ( 6690 'length' => 11, 6691 'type' => 'int', 6692 'not_null' => '1', 6693 'default' => 0, 6694 ), 6695 'id' => 6696 array ( 6697 'type' => 'auto_increment', 6698 'default' => false, 6699 ), 6700 'is_enabled' => 6701 array ( 6702 'length' => 11, 6703 'type' => 'int', 6704 'not_null' => '1', 6705 'default' => 0, 6706 ), 6707 'modified' => 6708 array ( 6709 'length' => 11, 6710 'type' => 'int', 6711 'not_null' => '1', 6712 'default' => 0, 6713 ), 6714 'modifier_id' => 6715 array ( 6716 'length' => 11, 6717 'type' => 'int', 6718 'not_null' => '1', 6719 'default' => 0, 6720 ), 6721 'name' => 6722 array ( 6723 'length' => 255, 6724 'type' => 'varchar', 6725 'not_null' => '1', 6726 'default' => '', 6727 ), 6728 'version' => 6729 array ( 6730 'length' => 11, 6731 'type' => 'int', 6732 'not_null' => '1', 6733 'default' => 0, 6734 ), 6735 'workflow_type_string' => 6736 array ( 6737 'length' => 50, 6738 'type' => 'varchar', 6739 'not_null' => '1', 6740 'default' => '', 6741 ), 6742 ), 6743 'indexes' => 6744 array ( 6745 'PRIMARY' => 6746 array ( 6747 'type' => 'primary', 6748 'fields' => 6749 array ( 6750 0 => 'id', 6751 1 => 'version', 6752 ), 6753 ), 6754 ), 6755 ), 6756 'ezworkflow_assign' => 6757 array ( 6758 'name' => 'ezworkflow_assign', 6759 'fields' => 6760 array ( 6761 'access_type' => 6762 array ( 6763 'length' => 11, 6764 'type' => 'int', 6765 'not_null' => '1', 6766 'default' => 0, 6767 ), 6768 'as_tree' => 6769 array ( 6770 'length' => 11, 6771 'type' => 'int', 6772 'not_null' => '1', 6773 'default' => 0, 6774 ), 6775 'id' => 6776 array ( 6777 'type' => 'auto_increment', 6778 'default' => false, 6779 ), 6780 'node_id' => 6781 array ( 6782 'length' => 11, 6783 'type' => 'int', 6784 'not_null' => '1', 6785 'default' => 0, 6786 ), 6787 'workflow_id' => 6788 array ( 6789 'length' => 11, 6790 'type' => 'int', 6791 'not_null' => '1', 6792 'default' => 0, 6793 ), 6794 ), 6795 'indexes' => 6796 array ( 6797 'PRIMARY' => 6798 array ( 6799 'type' => 'primary', 6800 'fields' => 6801 array ( 6802 0 => 'id', 6803 ), 6804 ), 6805 ), 6806 ), 6807 'ezworkflow_event' => 6808 array ( 6809 'name' => 'ezworkflow_event', 6810 'fields' => 6811 array ( 6812 'data_int1' => 6813 array ( 6814 'length' => 11, 6815 'type' => 'int', 6816 'default' => NULL, 6817 ), 6818 'data_int2' => 6819 array ( 6820 'length' => 11, 6821 'type' => 'int', 6822 'default' => NULL, 6823 ), 6824 'data_int3' => 6825 array ( 6826 'length' => 11, 6827 'type' => 'int', 6828 'default' => NULL, 6829 ), 6830 'data_int4' => 6831 array ( 6832 'length' => 11, 6833 'type' => 'int', 6834 'default' => NULL, 6835 ), 6836 'data_text1' => 6837 array ( 6838 'length' => 50, 6839 'type' => 'varchar', 6840 'default' => NULL, 6841 ), 6842 'data_text2' => 6843 array ( 6844 'length' => 50, 6845 'type' => 'varchar', 6846 'default' => NULL, 6847 ), 6848 'data_text3' => 6849 array ( 6850 'length' => 50, 6851 'type' => 'varchar', 6852 'default' => NULL, 6853 ), 6854 'data_text4' => 6855 array ( 6856 'length' => 50, 6857 'type' => 'varchar', 6858 'default' => NULL, 6859 ), 6860 'description' => 6861 array ( 6862 'length' => 50, 6863 'type' => 'varchar', 6864 'not_null' => '1', 6865 'default' => '', 6866 ), 6867 'id' => 6868 array ( 6869 'type' => 'auto_increment', 6870 'default' => false, 6871 ), 6872 'placement' => 6873 array ( 6874 'length' => 11, 6875 'type' => 'int', 6876 'not_null' => '1', 6877 'default' => 0, 6878 ), 6879 'version' => 6880 array ( 6881 'length' => 11, 6882 'type' => 'int', 6883 'not_null' => '1', 6884 'default' => 0, 6885 ), 6886 'workflow_id' => 6887 array ( 6888 'length' => 11, 6889 'type' => 'int', 6890 'not_null' => '1', 6891 'default' => 0, 6892 ), 6893 'workflow_type_string' => 6894 array ( 6895 'length' => 50, 6896 'type' => 'varchar', 6897 'not_null' => '1', 6898 'default' => '', 6899 ), 6900 ), 6901 'indexes' => 6902 array ( 6903 'PRIMARY' => 6904 array ( 6905 'type' => 'primary', 6906 'fields' => 6907 array ( 6908 0 => 'id', 6909 1 => 'version', 6910 ), 6911 ), 6912 ), 6913 ), 6914 'ezworkflow_group' => 6915 array ( 6916 'name' => 'ezworkflow_group', 6917 'fields' => 6918 array ( 6919 'created' => 6920 array ( 6921 'length' => 11, 6922 'type' => 'int', 6923 'not_null' => '1', 6924 'default' => 0, 6925 ), 6926 'creator_id' => 6927 array ( 6928 'length' => 11, 6929 'type' => 'int', 6930 'not_null' => '1', 6931 'default' => 0, 6932 ), 6933 'id' => 6934 array ( 6935 'type' => 'auto_increment', 6936 'default' => false, 6937 ), 6938 'modified' => 6939 array ( 6940 'length' => 11, 6941 'type' => 'int', 6942 'not_null' => '1', 6943 'default' => 0, 6944 ), 6945 'modifier_id' => 6946 array ( 6947 'length' => 11, 6948 'type' => 'int', 6949 'not_null' => '1', 6950 'default' => 0, 6951 ), 6952 'name' => 6953 array ( 6954 'length' => 255, 6955 'type' => 'varchar', 6956 'not_null' => '1', 6957 'default' => '', 6958 ), 6959 ), 6960 'indexes' => 6961 array ( 6962 'PRIMARY' => 6963 array ( 6964 'type' => 'primary', 6965 'fields' => 6966 array ( 6967 0 => 'id', 6968 ), 6969 ), 6970 ), 6971 ), 6972 'ezworkflow_group_link' => 6973 array ( 6974 'name' => 'ezworkflow_group_link', 6975 'fields' => 6976 array ( 6977 'group_id' => 6978 array ( 6979 'length' => 11, 6980 'type' => 'int', 6981 'not_null' => '1', 6982 'default' => 0, 6983 ), 6984 'group_name' => 6985 array ( 6986 'length' => 255, 6987 'type' => 'varchar', 6988 'default' => NULL, 6989 ), 6990 'workflow_id' => 6991 array ( 6992 'length' => 11, 6993 'type' => 'int', 6994 'not_null' => '1', 6995 'default' => 0, 6996 ), 6997 'workflow_version' => 6998 array ( 6999 'length' => 11, 7000 'type' => 'int', 7001 'not_null' => '1', 7002 'default' => 0, 7003 ), 7004 ), 7005 'indexes' => 7006 array ( 7007 'PRIMARY' => 7008 array ( 7009 'type' => 'primary', 7010 'fields' => 7011 array ( 7012 0 => 'workflow_id', 7013 1 => 'group_id', 7014 2 => 'workflow_version', 7015 ), 7016 ), 7017 ), 7018 ), 7019 'ezworkflow_process' => 7020 array ( 7021 'name' => 'ezworkflow_process', 7022 'fields' => 7023 array ( 7024 'activation_date' => 7025 array ( 7026 'length' => 11, 7027 'type' => 'int', 7028 'default' => NULL, 7029 ), 7030 'content_id' => 7031 array ( 7032 'length' => 11, 7033 'type' => 'int', 7034 'not_null' => '1', 7035 'default' => 0, 7036 ), 7037 'content_version' => 7038 array ( 7039 'length' => 11, 7040 'type' => 'int', 7041 'not_null' => '1', 7042 'default' => 0, 7043 ), 7044 'created' => 7045 array ( 7046 'length' => 11, 7047 'type' => 'int', 7048 'not_null' => '1', 7049 'default' => 0, 7050 ), 7051 'event_id' => 7052 array ( 7053 'length' => 11, 7054 'type' => 'int', 7055 'not_null' => '1', 7056 'default' => 0, 7057 ), 7058 'event_position' => 7059 array ( 7060 'length' => 11, 7061 'type' => 'int', 7062 'not_null' => '1', 7063 'default' => 0, 7064 ), 7065 'event_state' => 7066 array ( 7067 'length' => 11, 7068 'type' => 'int', 7069 'default' => NULL, 7070 ), 7071 'event_status' => 7072 array ( 7073 'length' => 11, 7074 'type' => 'int', 7075 'not_null' => '1', 7076 'default' => 0, 7077 ), 7078 'id' => 7079 array ( 7080 'type' => 'auto_increment', 7081 'default' => false, 7082 ), 7083 'last_event_id' => 7084 array ( 7085 'length' => 11, 7086 'type' => 'int', 7087 'not_null' => '1', 7088 'default' => 0, 7089 ), 7090 'last_event_position' => 7091 array ( 7092 'length' => 11, 7093 'type' => 'int', 7094 'not_null' => '1', 7095 'default' => 0, 7096 ), 7097 'last_event_status' => 7098 array ( 7099 'length' => 11, 7100 'type' => 'int', 7101 'not_null' => '1', 7102 'default' => 0, 7103 ), 7104 'memento_key' => 7105 array ( 7106 'length' => 32, 7107 'type' => 'varchar', 7108 'default' => NULL, 7109 ), 7110 'modified' => 7111 array ( 7112 'length' => 11, 7113 'type' => 'int', 7114 'not_null' => '1', 7115 'default' => 0, 7116 ), 7117 'node_id' => 7118 array ( 7119 'length' => 11, 7120 'type' => 'int', 7121 'not_null' => '1', 7122 'default' => 0, 7123 ), 7124 'parameters' => 7125 array ( 7126 'type' => 'longtext', 7127 'default' => false, 7128 ), 7129 'process_key' => 7130 array ( 7131 'length' => 32, 7132 'type' => 'varchar', 7133 'not_null' => '1', 7134 'default' => '', 7135 ), 7136 'session_key' => 7137 array ( 7138 'length' => 32, 7139 'type' => 'varchar', 7140 'not_null' => '1', 7141 'default' => '0', 7142 ), 7143 'status' => 7144 array ( 7145 'length' => 11, 7146 'type' => 'int', 7147 'default' => NULL, 7148 ), 7149 'user_id' => 7150 array ( 7151 'length' => 11, 7152 'type' => 'int', 7153 'not_null' => '1', 7154 'default' => 0, 7155 ), 7156 'workflow_id' => 7157 array ( 7158 'length' => 11, 7159 'type' => 'int', 7160 'not_null' => '1', 7161 'default' => 0, 7162 ), 7163 ), 7164 'indexes' => 7165 array ( 7166 'PRIMARY' => 7167 array ( 7168 'type' => 'primary', 7169 'fields' => 7170 array ( 7171 0 => 'id', 7172 ), 7173 ), 7174 'ezworkflow_process_process_key' => 7175 array ( 7176 'type' => 'non-unique', 7177 'fields' => 7178 array ( 7179 0 => 'process_key', 7180 ), 7181 ), 7182 ), 7183 ), 7184 '_info' => 7185 array ( 7186 'format' => 'generic', 7187 ), 7188 ); 7189 7190 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |