install.sql
148 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
--
-- DiscuzX INSTALL MAKE SQL DUMP V1.0
-- DO NOT modify this file
--
-- Create: 2013-08-27 16:12:45
--
DROP TABLE IF EXISTS pre_common_admincp_cmenu;
CREATE TABLE pre_common_admincp_cmenu (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
title varchar(255) NOT NULL,
url varchar(255) NOT NULL,
sort tinyint(1) NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL,
clicks smallint(6) unsigned NOT NULL DEFAULT '1',
uid mediumint(8) unsigned NOT NULL,
dateline int(10) unsigned NOT NULL,
PRIMARY KEY (id),
KEY uid (uid),
KEY displayorder (displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_admincp_group;
CREATE TABLE pre_common_admincp_group (
cpgroupid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
cpgroupname varchar(255) NOT NULL,
PRIMARY KEY (cpgroupid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_admincp_member;
CREATE TABLE pre_common_admincp_member (
uid int(10) unsigned NOT NULL,
cpgroupid int(10) unsigned NOT NULL,
customperm text NOT NULL,
PRIMARY KEY (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_admincp_perm;
CREATE TABLE pre_common_admincp_perm (
cpgroupid smallint(6) unsigned NOT NULL,
perm varchar(255) NOT NULL,
UNIQUE KEY cpgroupperm (cpgroupid,perm)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_admincp_session;
CREATE TABLE pre_common_admincp_session (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
adminid smallint(6) unsigned NOT NULL DEFAULT '0',
panel tinyint(1) NOT NULL DEFAULT '0',
ip varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
errorcount tinyint(1) NOT NULL DEFAULT '0',
`storage` mediumtext NOT NULL,
PRIMARY KEY (uid,panel)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_admingroup;
CREATE TABLE pre_common_admingroup (
admingid smallint(6) unsigned NOT NULL DEFAULT '0',
alloweditpost tinyint(1) NOT NULL DEFAULT '0',
alloweditpoll tinyint(1) NOT NULL DEFAULT '0',
allowstickthread tinyint(1) NOT NULL DEFAULT '0',
allowmodpost tinyint(1) NOT NULL DEFAULT '0',
allowdelpost tinyint(1) NOT NULL DEFAULT '0',
allowmassprune tinyint(1) NOT NULL DEFAULT '0',
allowrefund tinyint(1) NOT NULL DEFAULT '0',
allowcensorword tinyint(1) NOT NULL DEFAULT '0',
allowviewip tinyint(1) NOT NULL DEFAULT '0',
allowbanip tinyint(1) NOT NULL DEFAULT '0',
allowedituser tinyint(1) NOT NULL DEFAULT '0',
allowmoduser tinyint(1) NOT NULL DEFAULT '0',
allowbanuser tinyint(1) NOT NULL DEFAULT '0',
allowbanvisituser tinyint(1) NOT NULL DEFAULT '0',
allowpostannounce tinyint(1) NOT NULL DEFAULT '0',
allowviewlog tinyint(1) NOT NULL DEFAULT '0',
allowbanpost tinyint(1) NOT NULL DEFAULT '0',
supe_allowpushthread tinyint(1) NOT NULL DEFAULT '0',
allowhighlightthread tinyint(1) NOT NULL DEFAULT '0',
allowlivethread tinyint(1) NOT NULL DEFAULT '0',
allowdigestthread tinyint(1) NOT NULL DEFAULT '0',
allowrecommendthread tinyint(1) NOT NULL DEFAULT '0',
allowbumpthread tinyint(1) NOT NULL DEFAULT '0',
allowclosethread tinyint(1) NOT NULL DEFAULT '0',
allowmovethread tinyint(1) NOT NULL DEFAULT '0',
allowedittypethread tinyint(1) NOT NULL DEFAULT '0',
allowstampthread tinyint(1) NOT NULL DEFAULT '0',
allowstamplist tinyint(1) NOT NULL DEFAULT '0',
allowcopythread tinyint(1) NOT NULL DEFAULT '0',
allowmergethread tinyint(1) NOT NULL DEFAULT '0',
allowsplitthread tinyint(1) NOT NULL DEFAULT '0',
allowrepairthread tinyint(1) NOT NULL DEFAULT '0',
allowwarnpost tinyint(1) NOT NULL DEFAULT '0',
allowviewreport tinyint(1) NOT NULL DEFAULT '0',
alloweditforum tinyint(1) NOT NULL DEFAULT '0',
allowremovereward tinyint(1) NOT NULL DEFAULT '0',
allowedittrade tinyint(1) NOT NULL DEFAULT '0',
alloweditactivity tinyint(1) NOT NULL DEFAULT '0',
allowstickreply tinyint(1) NOT NULL DEFAULT '0',
allowmanagearticle tinyint(1) NOT NULL DEFAULT '0',
allowaddtopic tinyint(1) NOT NULL DEFAULT '0',
allowmanagetopic tinyint(1) NOT NULL DEFAULT '0',
allowdiy tinyint(1) NOT NULL DEFAULT '0',
allowclearrecycle tinyint(1) NOT NULL DEFAULT '0',
allowmanagetag tinyint(1) NOT NULL DEFAULT '0',
alloweditusertag tinyint(1) NOT NULL DEFAULT '0',
managefeed tinyint(1) NOT NULL DEFAULT '0',
managedoing tinyint(1) NOT NULL DEFAULT '0',
manageshare tinyint(1) NOT NULL DEFAULT '0',
manageblog tinyint(1) NOT NULL DEFAULT '0',
managealbum tinyint(1) NOT NULL DEFAULT '0',
managecomment tinyint(1) NOT NULL DEFAULT '0',
managemagiclog tinyint(1) NOT NULL DEFAULT '0',
managereport tinyint(1) NOT NULL DEFAULT '0',
managehotuser tinyint(1) NOT NULL DEFAULT '0',
managedefaultuser tinyint(1) NOT NULL DEFAULT '0',
managevideophoto tinyint(1) NOT NULL DEFAULT '0',
managemagic tinyint(1) NOT NULL DEFAULT '0',
manageclick tinyint(1) NOT NULL DEFAULT '0',
allowmanagecollection tinyint(1) NOT NULL DEFAULT '0',
allowmakehtml tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (admingid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_adminnote;
CREATE TABLE pre_common_adminnote (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
admin varchar(15) NOT NULL DEFAULT '',
access tinyint(3) NOT NULL DEFAULT '0',
adminid tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
message text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_advertisement;
CREATE TABLE pre_common_advertisement (
advid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
available tinyint(1) NOT NULL DEFAULT '0',
`type` varchar(50) NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
title varchar(255) NOT NULL DEFAULT '',
targets text NOT NULL,
parameters text NOT NULL,
`code` text NOT NULL,
starttime int(10) unsigned NOT NULL DEFAULT '0',
endtime int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (advid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_advertisement_custom;
CREATE TABLE pre_common_advertisement_custom (
id smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
PRIMARY KEY (id),
KEY `name` (`name`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_banned;
CREATE TABLE pre_common_banned (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
ip1 smallint(3) NOT NULL DEFAULT '0',
ip2 smallint(3) NOT NULL DEFAULT '0',
ip3 smallint(3) NOT NULL DEFAULT '0',
ip4 smallint(3) NOT NULL DEFAULT '0',
admin varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_block;
CREATE TABLE pre_common_block (
bid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
blockclass varchar(255) NOT NULL DEFAULT '0',
blocktype tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
title text NOT NULL,
classname varchar(255) NOT NULL DEFAULT '',
summary text NOT NULL,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(255) NOT NULL DEFAULT '',
styleid smallint(6) unsigned NOT NULL DEFAULT '0',
blockstyle text NOT NULL,
picwidth smallint(6) unsigned NOT NULL DEFAULT '0',
picheight smallint(6) unsigned NOT NULL DEFAULT '0',
target varchar(255) NOT NULL DEFAULT '',
dateformat varchar(255) NOT NULL DEFAULT '',
dateuformat tinyint(1) NOT NULL DEFAULT '0',
script varchar(255) NOT NULL DEFAULT '',
param text NOT NULL,
shownum smallint(6) unsigned NOT NULL DEFAULT '0',
cachetime int(10) NOT NULL DEFAULT '0',
cachetimerange char(5) NOT NULL DEFAULT '',
punctualupdate tinyint(1) NOT NULL DEFAULT '0',
hidedisplay tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
notinherited tinyint(1) NOT NULL DEFAULT '0',
isblank tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (bid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_block_favorite;
CREATE TABLE pre_common_block_favorite (
favid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
bid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (favid),
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_block_item;
CREATE TABLE pre_common_block_item (
itemid int(10) unsigned NOT NULL AUTO_INCREMENT,
bid mediumint(8) unsigned NOT NULL DEFAULT '0',
id int(10) unsigned NOT NULL DEFAULT '0',
idtype varchar(255) NOT NULL DEFAULT '',
itemtype tinyint(1) NOT NULL DEFAULT '0',
title varchar(255) NOT NULL DEFAULT '',
url varchar(255) NOT NULL DEFAULT '',
pic varchar(255) NOT NULL DEFAULT '',
picflag tinyint(1) NOT NULL DEFAULT '0',
makethumb tinyint(1) NOT NULL DEFAULT '0',
thumbpath varchar(255) NOT NULL DEFAULT '',
summary text NOT NULL,
showstyle text NOT NULL,
related text NOT NULL,
`fields` text NOT NULL,
displayorder smallint(6) NOT NULL DEFAULT '0',
startdate int(10) unsigned NOT NULL DEFAULT '0',
enddate int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (itemid),
KEY bid (bid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_block_item_data;
CREATE TABLE pre_common_block_item_data (
dataid int(10) unsigned NOT NULL AUTO_INCREMENT,
bid mediumint(8) unsigned NOT NULL DEFAULT '0',
id int(10) unsigned NOT NULL DEFAULT '0',
idtype varchar(255) NOT NULL DEFAULT '',
itemtype tinyint(1) NOT NULL DEFAULT '0',
title varchar(255) NOT NULL DEFAULT '',
url varchar(255) NOT NULL DEFAULT '',
pic varchar(255) NOT NULL DEFAULT '',
picflag tinyint(1) NOT NULL DEFAULT '0',
makethumb tinyint(1) NOT NULL DEFAULT '0',
summary text NOT NULL,
showstyle text NOT NULL,
related text NOT NULL,
`fields` text NOT NULL,
displayorder smallint(6) NOT NULL DEFAULT '0',
startdate int(10) unsigned NOT NULL DEFAULT '0',
enddate int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(255) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
isverified tinyint(1) NOT NULL DEFAULT '0',
verifiedtime int(10) unsigned NOT NULL DEFAULT '0',
stickgrade tinyint(2) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (dataid),
KEY bid (bid,stickgrade,displayorder,verifiedtime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_block_permission;
CREATE TABLE pre_common_block_permission (
bid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
allowmanage tinyint(1) NOT NULL DEFAULT '0',
allowrecommend tinyint(1) NOT NULL DEFAULT '0',
needverify tinyint(1) NOT NULL DEFAULT '0',
inheritedtplname varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (bid,uid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_block_pic;
CREATE TABLE pre_common_block_pic (
picid int(10) unsigned NOT NULL AUTO_INCREMENT,
bid mediumint(8) unsigned NOT NULL DEFAULT '0',
itemid int(10) unsigned NOT NULL DEFAULT '0',
pic varchar(255) NOT NULL DEFAULT '',
picflag tinyint(1) NOT NULL DEFAULT '0',
`type` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (picid),
KEY bid (bid,itemid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_block_style;
CREATE TABLE pre_common_block_style (
styleid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
blockclass varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
template text NOT NULL,
`hash` varchar(255) NOT NULL DEFAULT '',
getpic tinyint(1) NOT NULL DEFAULT '0',
getsummary tinyint(1) NOT NULL DEFAULT '0',
makethumb tinyint(1) NOT NULL DEFAULT '0',
settarget tinyint(1) NOT NULL DEFAULT '0',
`fields` text NOT NULL,
moreurl tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (styleid),
KEY `hash` (`hash`),
KEY blockclass (blockclass)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_block_xml;
CREATE TABLE pre_common_block_xml (
id smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
version varchar(255) NOT NULL,
url varchar(255) NOT NULL,
clientid varchar(255) NOT NULL,
`key` varchar(255) NOT NULL,
signtype varchar(255) NOT NULL,
`data` text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_cache;
CREATE TABLE pre_common_cache (
cachekey varchar(255) NOT NULL DEFAULT '',
cachevalue mediumblob NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (cachekey)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_card;
CREATE TABLE pre_common_card (
id char(255) NOT NULL DEFAULT '',
typeid smallint(6) unsigned NOT NULL DEFAULT '1',
maketype tinyint(1) NOT NULL DEFAULT '0',
makeruid mediumint(8) unsigned NOT NULL DEFAULT '0',
price mediumint(8) unsigned NOT NULL DEFAULT '0',
extcreditskey tinyint(1) NOT NULL DEFAULT '0',
extcreditsval int(10) NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1',
dateline int(10) unsigned NOT NULL DEFAULT '0',
cleardateline int(10) unsigned NOT NULL DEFAULT '0',
useddateline int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_card_log;
CREATE TABLE pre_common_card_log (
id smallint(6) NOT NULL AUTO_INCREMENT,
uid mediumint(8) NOT NULL DEFAULT '0',
username varchar(20) NOT NULL DEFAULT '',
cardrule varchar(255) NOT NULL DEFAULT '',
info text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
description mediumtext NOT NULL,
operation tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY dateline (dateline),
KEY operation_dateline (operation,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_card_type;
CREATE TABLE pre_common_card_type (
id smallint(6) NOT NULL AUTO_INCREMENT,
typename char(20) NOT NULL DEFAULT '',
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_connect_guest;
CREATE TABLE pre_common_connect_guest (
conopenid char(32) NOT NULL DEFAULT '',
conuin char(40) NOT NULL DEFAULT '',
conuinsecret char(16) NOT NULL DEFAULT '',
conqqnick char(100) NOT NULL DEFAULT '',
PRIMARY KEY (conopenid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_credit_log;
CREATE TABLE pre_common_credit_log (
logid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
operation char(3) NOT NULL DEFAULT '',
relatedid int(10) unsigned NOT NULL,
dateline int(10) unsigned NOT NULL,
extcredits1 int(10) NOT NULL,
extcredits2 int(10) NOT NULL,
extcredits3 int(10) NOT NULL,
extcredits4 int(10) NOT NULL,
extcredits5 int(10) NOT NULL,
extcredits6 int(10) NOT NULL,
extcredits7 int(10) NOT NULL,
extcredits8 int(10) NOT NULL,
PRIMARY KEY (logid),
KEY uid (uid),
KEY operation (operation),
KEY relatedid (relatedid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_credit_log_field;
CREATE TABLE pre_common_credit_log_field (
logid mediumint(8) unsigned NOT NULL,
title varchar(100) NOT NULL,
`text` text NOT NULL,
KEY logid (logid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_credit_rule;
CREATE TABLE pre_common_credit_rule (
rid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
rulename varchar(20) NOT NULL DEFAULT '',
`action` varchar(20) NOT NULL DEFAULT '',
cycletype tinyint(1) NOT NULL DEFAULT '0',
cycletime int(10) NOT NULL DEFAULT '0',
rewardnum tinyint(2) NOT NULL DEFAULT '1',
norepeat tinyint(1) NOT NULL DEFAULT '0',
extcredits1 int(10) NOT NULL DEFAULT '0',
extcredits2 int(10) NOT NULL DEFAULT '0',
extcredits3 int(10) NOT NULL DEFAULT '0',
extcredits4 int(10) NOT NULL DEFAULT '0',
extcredits5 int(10) NOT NULL DEFAULT '0',
extcredits6 int(10) NOT NULL DEFAULT '0',
extcredits7 int(10) NOT NULL DEFAULT '0',
extcredits8 int(10) NOT NULL DEFAULT '0',
fids text NOT NULL,
PRIMARY KEY (rid),
UNIQUE KEY `action` (`action`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_credit_rule_log;
CREATE TABLE pre_common_credit_rule_log (
clid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
rid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
total mediumint(8) unsigned NOT NULL DEFAULT '0',
cyclenum mediumint(8) unsigned NOT NULL DEFAULT '0',
extcredits1 int(10) NOT NULL DEFAULT '0',
extcredits2 int(10) NOT NULL DEFAULT '0',
extcredits3 int(10) NOT NULL DEFAULT '0',
extcredits4 int(10) NOT NULL DEFAULT '0',
extcredits5 int(10) NOT NULL DEFAULT '0',
extcredits6 int(10) NOT NULL DEFAULT '0',
extcredits7 int(10) NOT NULL DEFAULT '0',
extcredits8 int(10) NOT NULL DEFAULT '0',
starttime int(10) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (clid),
KEY uid (uid,rid,fid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_credit_rule_log_field;
CREATE TABLE pre_common_credit_rule_log_field (
clid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
info text NOT NULL,
`user` text NOT NULL,
app text NOT NULL,
PRIMARY KEY (uid,clid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_cron;
CREATE TABLE pre_common_cron (
cronid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
available tinyint(1) NOT NULL DEFAULT '0',
`type` enum('user','system','plugin') NOT NULL DEFAULT 'user',
`name` char(50) NOT NULL DEFAULT '',
filename char(50) NOT NULL DEFAULT '',
lastrun int(10) unsigned NOT NULL DEFAULT '0',
nextrun int(10) unsigned NOT NULL DEFAULT '0',
weekday tinyint(1) NOT NULL DEFAULT '0',
`day` tinyint(2) NOT NULL DEFAULT '0',
`hour` tinyint(2) NOT NULL DEFAULT '0',
`minute` char(36) NOT NULL DEFAULT '',
PRIMARY KEY (cronid),
KEY nextrun (available,nextrun)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_devicetoken;
CREATE TABLE pre_common_devicetoken (
uid mediumint(8) unsigned NOT NULL,
token char(50) NOT NULL,
PRIMARY KEY (uid),
KEY token (token)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_district;
CREATE TABLE pre_common_district (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`level` tinyint(4) unsigned NOT NULL DEFAULT '0',
usetype tinyint(1) unsigned NOT NULL DEFAULT '0',
upid mediumint(8) unsigned NOT NULL DEFAULT '0',
displayorder smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY upid (upid,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_diy_data;
CREATE TABLE pre_common_diy_data (
targettplname varchar(100) NOT NULL DEFAULT '',
tpldirectory varchar(80) NOT NULL DEFAULT '',
primaltplname varchar(255) NOT NULL DEFAULT '',
diycontent mediumtext NOT NULL,
`name` varchar(255) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (targettplname,tpldirectory)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_domain;
CREATE TABLE pre_common_domain (
domain char(30) NOT NULL DEFAULT '',
domainroot char(60) NOT NULL DEFAULT '',
id mediumint(8) unsigned NOT NULL DEFAULT '0',
idtype char(15) NOT NULL DEFAULT '',
PRIMARY KEY (id,idtype),
KEY domain (domain,domainroot),
KEY idtype (idtype)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_failedip;
CREATE TABLE pre_common_failedip (
ip char(7) NOT NULL DEFAULT '',
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
count tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (ip,lastupdate),
KEY lastupdate (lastupdate)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_failedlogin;
CREATE TABLE pre_common_failedlogin (
ip char(15) NOT NULL DEFAULT '',
username char(32) NOT NULL DEFAULT '',
count tinyint(1) unsigned NOT NULL DEFAULT '0',
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (ip,username)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_friendlink;
CREATE TABLE pre_common_friendlink (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
displayorder tinyint(3) NOT NULL DEFAULT '0',
`name` varchar(100) NOT NULL DEFAULT '',
url varchar(255) NOT NULL DEFAULT '',
description mediumtext NOT NULL,
logo varchar(255) NOT NULL DEFAULT '',
`type` tinyint(3) NOT NULL DEFAULT '0',
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_grouppm;
CREATE TABLE pre_common_grouppm (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
authorid mediumint(8) unsigned NOT NULL DEFAULT '0',
author varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
message text NOT NULL,
numbers mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_invite;
CREATE TABLE pre_common_invite (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
`code` char(20) NOT NULL DEFAULT '',
fuid mediumint(8) unsigned NOT NULL DEFAULT '0',
fusername char(20) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '0',
email char(40) NOT NULL DEFAULT '',
inviteip char(15) NOT NULL DEFAULT '',
appid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
endtime int(10) unsigned NOT NULL DEFAULT '0',
regdateline int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
orderid char(32) NOT NULL DEFAULT '',
PRIMARY KEY (id),
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_magic;
CREATE TABLE pre_common_magic (
magicid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
available tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(50) NOT NULL,
identifier varchar(40) NOT NULL,
description varchar(255) NOT NULL,
displayorder tinyint(3) NOT NULL DEFAULT '0',
credit tinyint(1) NOT NULL DEFAULT '0',
price mediumint(8) unsigned NOT NULL DEFAULT '0',
num smallint(6) unsigned NOT NULL DEFAULT '0',
salevolume smallint(6) unsigned NOT NULL DEFAULT '0',
supplytype tinyint(1) NOT NULL DEFAULT '0',
supplynum smallint(6) unsigned NOT NULL DEFAULT '0',
useperoid tinyint(1) NOT NULL DEFAULT '0',
usenum smallint(6) unsigned NOT NULL DEFAULT '0',
weight tinyint(3) unsigned NOT NULL DEFAULT '1',
magicperm text NOT NULL,
useevent tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (magicid),
UNIQUE KEY identifier (identifier),
KEY displayorder (available,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_magiclog;
CREATE TABLE pre_common_magiclog (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
magicid smallint(6) unsigned NOT NULL DEFAULT '0',
`action` tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
amount smallint(6) unsigned NOT NULL DEFAULT '0',
credit tinyint(1) unsigned NOT NULL DEFAULT '0',
price mediumint(8) unsigned NOT NULL DEFAULT '0',
targetid int(10) unsigned NOT NULL DEFAULT '0',
idtype char(6) DEFAULT NULL,
targetuid mediumint(8) unsigned NOT NULL DEFAULT '0',
KEY uid (uid,dateline),
KEY `action` (`action`),
KEY targetuid (targetuid,dateline),
KEY magicid (magicid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_mailcron;
CREATE TABLE pre_common_mailcron (
cid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
touid mediumint(8) unsigned NOT NULL DEFAULT '0',
email varchar(100) NOT NULL DEFAULT '',
sendtime int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (cid),
KEY sendtime (sendtime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_mailqueue;
CREATE TABLE pre_common_mailqueue (
qid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
cid mediumint(8) unsigned NOT NULL DEFAULT '0',
`subject` text NOT NULL,
message text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (qid),
KEY mcid (cid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member;
CREATE TABLE pre_common_member (
uid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
email char(40) NOT NULL DEFAULT '',
username char(15) NOT NULL DEFAULT '',
`password` char(32) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '0',
emailstatus tinyint(1) NOT NULL DEFAULT '0',
avatarstatus tinyint(1) NOT NULL DEFAULT '0',
videophotostatus tinyint(1) NOT NULL DEFAULT '0',
adminid tinyint(1) NOT NULL DEFAULT '0',
groupid smallint(6) unsigned NOT NULL DEFAULT '0',
groupexpiry int(10) unsigned NOT NULL DEFAULT '0',
extgroupids char(20) NOT NULL DEFAULT '',
regdate int(10) unsigned NOT NULL DEFAULT '0',
credits int(10) NOT NULL DEFAULT '0',
notifysound tinyint(1) NOT NULL DEFAULT '0',
timeoffset char(4) NOT NULL DEFAULT '',
newpm smallint(6) unsigned NOT NULL DEFAULT '0',
newprompt smallint(6) unsigned NOT NULL DEFAULT '0',
accessmasks tinyint(1) NOT NULL DEFAULT '0',
allowadmincp tinyint(1) NOT NULL DEFAULT '0',
onlyacceptfriendpm tinyint(1) NOT NULL DEFAULT '0',
conisbind tinyint(1) unsigned NOT NULL DEFAULT '0',
freeze tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (uid),
UNIQUE KEY username (username),
KEY email (email),
KEY groupid (groupid),
KEY conisbind (conisbind),
KEY regdate (regdate)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_action_log;
CREATE TABLE pre_common_member_action_log (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
`action` tinyint(5) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY dateline (dateline,`action`,uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_connect;
CREATE TABLE pre_common_member_connect (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
conuin char(40) NOT NULL DEFAULT '',
conuinsecret char(16) NOT NULL DEFAULT '',
conopenid char(32) NOT NULL DEFAULT '',
conisfeed tinyint(1) unsigned NOT NULL DEFAULT '0',
conispublishfeed tinyint(1) unsigned NOT NULL DEFAULT '0',
conispublisht tinyint(1) unsigned NOT NULL DEFAULT '0',
conisregister tinyint(1) unsigned NOT NULL DEFAULT '0',
conisqzoneavatar tinyint(1) unsigned NOT NULL DEFAULT '0',
conisqqshow tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid),
KEY conuin (conuin),
KEY conopenid (conopenid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_count;
CREATE TABLE pre_common_member_count (
uid mediumint(8) unsigned NOT NULL,
extcredits1 int(10) NOT NULL DEFAULT '0',
extcredits2 int(10) NOT NULL DEFAULT '0',
extcredits3 int(10) NOT NULL DEFAULT '0',
extcredits4 int(10) NOT NULL DEFAULT '0',
extcredits5 int(10) NOT NULL DEFAULT '0',
extcredits6 int(10) NOT NULL DEFAULT '0',
extcredits7 int(10) NOT NULL DEFAULT '0',
extcredits8 int(10) NOT NULL DEFAULT '0',
friends smallint(6) unsigned NOT NULL DEFAULT '0',
posts mediumint(8) unsigned NOT NULL DEFAULT '0',
threads mediumint(8) unsigned NOT NULL DEFAULT '0',
digestposts smallint(6) unsigned NOT NULL DEFAULT '0',
doings smallint(6) unsigned NOT NULL DEFAULT '0',
blogs smallint(6) unsigned NOT NULL DEFAULT '0',
albums smallint(6) unsigned NOT NULL DEFAULT '0',
sharings smallint(6) unsigned NOT NULL DEFAULT '0',
attachsize int(10) unsigned NOT NULL DEFAULT '0',
views mediumint(8) unsigned NOT NULL DEFAULT '0',
oltime smallint(6) unsigned NOT NULL DEFAULT '0',
todayattachs smallint(6) unsigned NOT NULL DEFAULT '0',
todayattachsize int(10) unsigned NOT NULL DEFAULT '0',
feeds mediumint(8) unsigned NOT NULL DEFAULT '0',
follower mediumint(8) unsigned NOT NULL DEFAULT '0',
following mediumint(8) unsigned NOT NULL DEFAULT '0',
newfollower mediumint(8) unsigned NOT NULL DEFAULT '0',
blacklist mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid),
KEY posts (posts)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_crime;
CREATE TABLE pre_common_member_crime (
cid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
operatorid mediumint(8) unsigned NOT NULL DEFAULT '0',
operator varchar(15) NOT NULL,
`action` tinyint(5) NOT NULL,
reason text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (cid),
KEY uid (uid,`action`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_field_forum;
CREATE TABLE pre_common_member_field_forum (
uid mediumint(8) unsigned NOT NULL,
publishfeed tinyint(3) NOT NULL DEFAULT '0',
customshow tinyint(1) unsigned NOT NULL DEFAULT '26',
customstatus varchar(30) NOT NULL DEFAULT '',
medals text NOT NULL,
sightml text NOT NULL,
groupterms text NOT NULL,
authstr varchar(20) NOT NULL DEFAULT '',
groups mediumtext NOT NULL,
attentiongroup varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_field_home;
CREATE TABLE pre_common_member_field_home (
uid mediumint(8) unsigned NOT NULL,
videophoto varchar(255) NOT NULL DEFAULT '',
spacename varchar(255) NOT NULL DEFAULT '',
spacedescription varchar(255) NOT NULL DEFAULT '',
domain char(15) NOT NULL DEFAULT '',
addsize int(10) unsigned NOT NULL DEFAULT '0',
addfriend smallint(6) unsigned NOT NULL DEFAULT '0',
menunum smallint(6) unsigned NOT NULL DEFAULT '0',
theme varchar(20) NOT NULL DEFAULT '',
spacecss text NOT NULL,
blockposition text NOT NULL,
recentnote text NOT NULL,
spacenote text NOT NULL,
privacy text NOT NULL,
feedfriend mediumtext NOT NULL,
acceptemail text NOT NULL,
magicgift text NOT NULL,
stickblogs text NOT NULL,
PRIMARY KEY (uid),
KEY domain (domain)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_forum_buylog;
CREATE TABLE pre_common_member_forum_buylog (
uid mediumint(8) unsigned NOT NULL,
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
credits int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,fid),
KEY fid (fid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_grouppm;
CREATE TABLE pre_common_member_grouppm (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
gpmid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`status` tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,gpmid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_log;
CREATE TABLE pre_common_member_log (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
`action` char(10) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_magic;
CREATE TABLE pre_common_member_magic (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
magicid smallint(6) unsigned NOT NULL DEFAULT '0',
num smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,magicid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_medal;
CREATE TABLE pre_common_member_medal (
uid mediumint(8) unsigned NOT NULL,
medalid smallint(6) unsigned NOT NULL,
PRIMARY KEY (uid,medalid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_newprompt;
CREATE TABLE pre_common_member_newprompt (
uid mediumint(8) unsigned NOT NULL,
`data` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_profile;
CREATE TABLE pre_common_member_profile (
uid mediumint(8) unsigned NOT NULL,
realname varchar(255) NOT NULL DEFAULT '',
gender tinyint(1) NOT NULL DEFAULT '0',
birthyear smallint(6) unsigned NOT NULL DEFAULT '0',
birthmonth tinyint(3) unsigned NOT NULL DEFAULT '0',
birthday tinyint(3) unsigned NOT NULL DEFAULT '0',
constellation varchar(255) NOT NULL DEFAULT '',
zodiac varchar(255) NOT NULL DEFAULT '',
telephone varchar(255) NOT NULL DEFAULT '',
mobile varchar(255) NOT NULL DEFAULT '',
idcardtype varchar(255) NOT NULL DEFAULT '',
idcard varchar(255) NOT NULL DEFAULT '',
address varchar(255) NOT NULL DEFAULT '',
zipcode varchar(255) NOT NULL DEFAULT '',
nationality varchar(255) NOT NULL DEFAULT '',
birthprovince varchar(255) NOT NULL DEFAULT '',
birthcity varchar(255) NOT NULL DEFAULT '',
birthdist varchar(20) NOT NULL DEFAULT '',
birthcommunity varchar(255) NOT NULL DEFAULT '',
resideprovince varchar(255) NOT NULL DEFAULT '',
residecity varchar(255) NOT NULL DEFAULT '',
residedist varchar(20) NOT NULL DEFAULT '',
residecommunity varchar(255) NOT NULL DEFAULT '',
residesuite varchar(255) NOT NULL DEFAULT '',
graduateschool varchar(255) NOT NULL DEFAULT '',
company varchar(255) NOT NULL DEFAULT '',
education varchar(255) NOT NULL DEFAULT '',
occupation varchar(255) NOT NULL DEFAULT '',
position varchar(255) NOT NULL DEFAULT '',
revenue varchar(255) NOT NULL DEFAULT '',
affectivestatus varchar(255) NOT NULL DEFAULT '',
lookingfor varchar(255) NOT NULL DEFAULT '',
bloodtype varchar(255) NOT NULL DEFAULT '',
height varchar(255) NOT NULL DEFAULT '',
weight varchar(255) NOT NULL DEFAULT '',
alipay varchar(255) NOT NULL DEFAULT '',
icq varchar(255) NOT NULL DEFAULT '',
qq varchar(255) NOT NULL DEFAULT '',
yahoo varchar(255) NOT NULL DEFAULT '',
msn varchar(255) NOT NULL DEFAULT '',
taobao varchar(255) NOT NULL DEFAULT '',
site varchar(255) NOT NULL DEFAULT '',
bio text NOT NULL,
interest text NOT NULL,
field1 text NOT NULL,
field2 text NOT NULL,
field3 text NOT NULL,
field4 text NOT NULL,
field5 text NOT NULL,
field6 text NOT NULL,
field7 text NOT NULL,
field8 text NOT NULL,
PRIMARY KEY (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_profile_setting;
CREATE TABLE pre_common_member_profile_setting (
fieldid varchar(255) NOT NULL DEFAULT '',
available tinyint(1) NOT NULL DEFAULT '0',
invisible tinyint(1) NOT NULL DEFAULT '0',
needverify tinyint(1) NOT NULL DEFAULT '0',
title varchar(255) NOT NULL DEFAULT '',
description varchar(255) NOT NULL DEFAULT '',
displayorder smallint(6) unsigned NOT NULL DEFAULT '0',
required tinyint(1) NOT NULL DEFAULT '0',
unchangeable tinyint(1) NOT NULL DEFAULT '0',
showincard tinyint(1) NOT NULL DEFAULT '0',
showinthread tinyint(1) NOT NULL DEFAULT '0',
showinregister tinyint(1) NOT NULL DEFAULT '0',
allowsearch tinyint(1) NOT NULL DEFAULT '0',
formtype varchar(255) NOT NULL,
size smallint(6) unsigned NOT NULL DEFAULT '0',
choices text NOT NULL,
validate text NOT NULL,
PRIMARY KEY (fieldid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_security;
CREATE TABLE pre_common_member_security (
securityid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(255) NOT NULL DEFAULT '',
fieldid varchar(255) NOT NULL DEFAULT '',
oldvalue text NOT NULL,
newvalue text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (securityid),
KEY uid (uid,fieldid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_secwhite;
CREATE TABLE pre_common_member_secwhite (
uid int(10) NOT NULL,
dateline int(10) NOT NULL,
PRIMARY KEY (uid)
) TYPE=HEAP;
DROP TABLE IF EXISTS pre_common_member_stat_field;
CREATE TABLE pre_common_member_stat_field (
optionid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
fieldid varchar(255) NOT NULL DEFAULT '',
fieldvalue varchar(255) NOT NULL DEFAULT '',
`hash` varchar(255) NOT NULL DEFAULT '',
users mediumint(8) unsigned NOT NULL DEFAULT '0',
updatetime int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (optionid),
KEY fieldid (fieldid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_status;
CREATE TABLE pre_common_member_status (
uid mediumint(8) unsigned NOT NULL,
regip char(15) NOT NULL DEFAULT '',
lastip char(15) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
lastvisit int(10) unsigned NOT NULL DEFAULT '0',
lastactivity int(10) unsigned NOT NULL DEFAULT '0',
lastpost int(10) unsigned NOT NULL DEFAULT '0',
lastsendmail int(10) unsigned NOT NULL DEFAULT '0',
invisible tinyint(1) NOT NULL DEFAULT '0',
buyercredit smallint(6) NOT NULL DEFAULT '0',
sellercredit smallint(6) NOT NULL DEFAULT '0',
favtimes mediumint(8) unsigned NOT NULL DEFAULT '0',
sharetimes mediumint(8) unsigned NOT NULL DEFAULT '0',
profileprogress tinyint(2) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid),
KEY lastactivity (lastactivity,invisible)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_validate;
CREATE TABLE pre_common_member_validate (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
submitdate int(10) unsigned NOT NULL DEFAULT '0',
moddate int(10) unsigned NOT NULL DEFAULT '0',
admin varchar(15) NOT NULL DEFAULT '',
submittimes tinyint(3) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
message text NOT NULL,
remark text NOT NULL,
PRIMARY KEY (uid),
KEY `status` (`status`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_verify;
CREATE TABLE pre_common_member_verify (
uid mediumint(8) unsigned NOT NULL,
verify1 tinyint(1) NOT NULL DEFAULT '0',
verify2 tinyint(1) NOT NULL DEFAULT '0',
verify3 tinyint(1) NOT NULL DEFAULT '0',
verify4 tinyint(1) NOT NULL DEFAULT '0',
verify5 tinyint(1) NOT NULL DEFAULT '0',
verify6 tinyint(1) NOT NULL DEFAULT '0',
verify7 tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (uid),
KEY verify1 (verify1),
KEY verify2 (verify2),
KEY verify3 (verify3),
KEY verify4 (verify4),
KEY verify5 (verify5),
KEY verify6 (verify6),
KEY verify7 (verify7)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_member_verify_info;
CREATE TABLE pre_common_member_verify_info (
vid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(30) NOT NULL DEFAULT '',
verifytype tinyint(1) NOT NULL DEFAULT '0',
flag tinyint(1) NOT NULL DEFAULT '0',
field text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (vid),
KEY verifytype (verifytype,flag),
KEY uid (uid,verifytype,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_myapp;
CREATE TABLE pre_common_myapp (
appid mediumint(8) unsigned NOT NULL DEFAULT '0',
appname varchar(60) NOT NULL DEFAULT '',
narrow tinyint(1) NOT NULL DEFAULT '0',
flag tinyint(1) NOT NULL DEFAULT '0',
version mediumint(8) unsigned NOT NULL DEFAULT '0',
userpanelarea tinyint(1) NOT NULL DEFAULT '0',
canvastitle varchar(60) NOT NULL DEFAULT '',
fullscreen tinyint(1) NOT NULL DEFAULT '0',
displayuserpanel tinyint(1) NOT NULL DEFAULT '0',
displaymethod tinyint(1) NOT NULL DEFAULT '0',
displayorder smallint(6) unsigned NOT NULL DEFAULT '0',
appstatus tinyint(2) NOT NULL DEFAULT '0',
iconstatus tinyint(2) NOT NULL DEFAULT '0',
icondowntime int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (appid),
KEY flag (flag,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_myinvite;
CREATE TABLE pre_common_myinvite (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
typename varchar(100) NOT NULL DEFAULT '',
appid mediumint(8) NOT NULL DEFAULT '0',
`type` tinyint(1) NOT NULL DEFAULT '0',
fromuid mediumint(8) unsigned NOT NULL DEFAULT '0',
touid mediumint(8) unsigned NOT NULL DEFAULT '0',
myml text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
`hash` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `hash` (`hash`),
KEY uid (touid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_mytask;
CREATE TABLE pre_common_mytask (
uid mediumint(8) unsigned NOT NULL,
username char(15) NOT NULL DEFAULT '',
taskid smallint(6) unsigned NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
csc char(255) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,taskid),
KEY parter (taskid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_nav;
CREATE TABLE pre_common_nav (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
parentid smallint(6) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
title varchar(255) NOT NULL,
url varchar(255) NOT NULL,
identifier varchar(255) NOT NULL,
target tinyint(1) NOT NULL DEFAULT '0',
`type` tinyint(1) NOT NULL DEFAULT '0',
available tinyint(1) NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL,
highlight tinyint(1) NOT NULL DEFAULT '0',
`level` tinyint(1) NOT NULL DEFAULT '0',
subtype tinyint(1) NOT NULL DEFAULT '0',
subcols tinyint(1) NOT NULL DEFAULT '0',
icon varchar(255) NOT NULL,
subname varchar(255) NOT NULL,
suburl varchar(255) NOT NULL,
navtype tinyint(1) NOT NULL DEFAULT '0',
logo varchar(255) NOT NULL,
PRIMARY KEY (id),
KEY navtype (navtype)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_onlinetime;
CREATE TABLE pre_common_onlinetime (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
thismonth smallint(6) unsigned NOT NULL DEFAULT '0',
total mediumint(8) unsigned NOT NULL DEFAULT '0',
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_optimizer;
CREATE TABLE pre_common_optimizer (
k char(100) NOT NULL DEFAULT '',
v char(255) NOT NULL DEFAULT '',
PRIMARY KEY (k)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_patch;
CREATE TABLE pre_common_patch (
`serial` varchar(10) NOT NULL DEFAULT '',
rule text NOT NULL,
note text NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`serial`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_plugin;
CREATE TABLE pre_common_plugin (
pluginid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
available tinyint(1) NOT NULL DEFAULT '0',
adminid tinyint(1) unsigned NOT NULL DEFAULT '0',
`name` varchar(40) NOT NULL DEFAULT '',
identifier varchar(40) NOT NULL DEFAULT '',
description varchar(255) NOT NULL DEFAULT '',
datatables varchar(255) NOT NULL DEFAULT '',
`directory` varchar(100) NOT NULL DEFAULT '',
copyright varchar(100) NOT NULL DEFAULT '',
modules text NOT NULL,
version varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (pluginid),
UNIQUE KEY identifier (identifier)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_pluginvar;
CREATE TABLE pre_common_pluginvar (
pluginvarid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
pluginid smallint(6) unsigned NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
title varchar(100) NOT NULL DEFAULT '',
description varchar(255) NOT NULL DEFAULT '',
variable varchar(40) NOT NULL DEFAULT '',
`type` varchar(20) NOT NULL DEFAULT 'text',
`value` text NOT NULL,
extra text NOT NULL,
PRIMARY KEY (pluginvarid),
KEY pluginid (pluginid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_process;
CREATE TABLE pre_common_process (
processid char(32) NOT NULL,
expiry int(10) DEFAULT NULL,
extra int(10) DEFAULT NULL,
PRIMARY KEY (processid),
KEY expiry (expiry)
) TYPE=HEAP;
DROP TABLE IF EXISTS pre_common_regip;
CREATE TABLE pre_common_regip (
ip char(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
count smallint(6) NOT NULL DEFAULT '0',
KEY ip (ip)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_relatedlink;
CREATE TABLE pre_common_relatedlink (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
url varchar(255) NOT NULL DEFAULT '',
extent tinyint(3) NOT NULL DEFAULT '0',
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_remote_port;
CREATE TABLE pre_common_remote_port (
id mediumint(8) unsigned NOT NULL DEFAULT '0',
idtype char(15) NOT NULL DEFAULT '',
useip char(15) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id,idtype)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_report;
CREATE TABLE pre_common_report (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
urlkey char(32) NOT NULL DEFAULT '',
url varchar(255) NOT NULL DEFAULT '',
message text NOT NULL,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
num smallint(6) unsigned NOT NULL DEFAULT '1',
opuid mediumint(8) unsigned NOT NULL DEFAULT '0',
opname varchar(15) NOT NULL DEFAULT '',
optime int(10) unsigned NOT NULL DEFAULT '0',
opresult varchar(255) NOT NULL DEFAULT '',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY urlkey (urlkey),
KEY fid (fid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_searchindex;
CREATE TABLE pre_common_searchindex (
searchid int(10) unsigned NOT NULL AUTO_INCREMENT,
srchmod tinyint(3) unsigned NOT NULL,
keywords varchar(255) NOT NULL DEFAULT '',
searchstring text NOT NULL,
useip varchar(15) NOT NULL DEFAULT '',
uid mediumint(10) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
threadsortid smallint(6) unsigned NOT NULL DEFAULT '0',
num smallint(6) unsigned NOT NULL DEFAULT '0',
ids text NOT NULL,
PRIMARY KEY (searchid),
KEY srchmod (srchmod)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_seccheck;
CREATE TABLE pre_common_seccheck (
ssid int(10) NOT NULL AUTO_INCREMENT,
dateline int(10) NOT NULL,
`code` char(6) NOT NULL,
succeed tinyint(1) NOT NULL,
verified tinyint(1) NOT NULL,
PRIMARY KEY (ssid),
KEY dateline (dateline),
KEY succeed (succeed),
KEY verified (verified)
) TYPE=HEAP;
DROP TABLE IF EXISTS pre_common_secquestion;
CREATE TABLE pre_common_secquestion (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`type` tinyint(1) unsigned NOT NULL,
question text NOT NULL,
answer varchar(255) NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_session;
CREATE TABLE pre_common_session (
sid char(6) NOT NULL DEFAULT '',
ip1 tinyint(3) unsigned NOT NULL DEFAULT '0',
ip2 tinyint(3) unsigned NOT NULL DEFAULT '0',
ip3 tinyint(3) unsigned NOT NULL DEFAULT '0',
ip4 tinyint(3) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username char(15) NOT NULL DEFAULT '',
groupid smallint(6) unsigned NOT NULL DEFAULT '0',
invisible tinyint(1) NOT NULL DEFAULT '0',
`action` tinyint(1) unsigned NOT NULL DEFAULT '0',
lastactivity int(10) unsigned NOT NULL DEFAULT '0',
lastolupdate int(10) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
UNIQUE KEY sid (sid),
KEY uid (uid)
) TYPE=HEAP;
DROP TABLE IF EXISTS pre_common_setting;
CREATE TABLE pre_common_setting (
skey varchar(255) NOT NULL DEFAULT '',
svalue text NOT NULL,
PRIMARY KEY (skey)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_smiley;
CREATE TABLE pre_common_smiley (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
typeid smallint(6) unsigned NOT NULL,
displayorder tinyint(1) NOT NULL DEFAULT '0',
`type` enum('smiley','stamp','stamplist') NOT NULL DEFAULT 'smiley',
`code` varchar(30) NOT NULL DEFAULT '',
url varchar(30) NOT NULL DEFAULT '',
PRIMARY KEY (id),
KEY `type` (`type`,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_sphinxcounter;
CREATE TABLE pre_common_sphinxcounter (
indexid tinyint(1) NOT NULL,
maxid int(10) NOT NULL,
PRIMARY KEY (indexid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_stat;
CREATE TABLE pre_common_stat (
daytime int(10) unsigned NOT NULL DEFAULT '0',
login int(10) unsigned NOT NULL DEFAULT '0',
mobilelogin int(10) unsigned NOT NULL DEFAULT '0',
connectlogin int(10) unsigned NOT NULL DEFAULT '0',
register int(10) unsigned NOT NULL DEFAULT '0',
invite int(10) unsigned NOT NULL DEFAULT '0',
appinvite int(10) unsigned NOT NULL DEFAULT '0',
doing int(10) unsigned NOT NULL DEFAULT '0',
blog int(10) unsigned NOT NULL DEFAULT '0',
pic int(10) unsigned NOT NULL DEFAULT '0',
poll int(10) unsigned NOT NULL DEFAULT '0',
activity int(10) unsigned NOT NULL DEFAULT '0',
`share` int(10) unsigned NOT NULL DEFAULT '0',
thread int(10) unsigned NOT NULL DEFAULT '0',
docomment int(10) unsigned NOT NULL DEFAULT '0',
blogcomment int(10) unsigned NOT NULL DEFAULT '0',
piccomment int(10) unsigned NOT NULL DEFAULT '0',
sharecomment int(10) unsigned NOT NULL DEFAULT '0',
reward int(10) unsigned NOT NULL DEFAULT '0',
debate int(10) unsigned NOT NULL DEFAULT '0',
trade int(10) unsigned NOT NULL DEFAULT '0',
`group` int(10) unsigned NOT NULL DEFAULT '0',
groupjoin int(10) unsigned NOT NULL DEFAULT '0',
groupthread int(10) unsigned NOT NULL DEFAULT '0',
grouppost int(10) unsigned NOT NULL DEFAULT '0',
post int(10) unsigned NOT NULL DEFAULT '0',
wall int(10) unsigned NOT NULL DEFAULT '0',
poke int(10) unsigned NOT NULL DEFAULT '0',
click int(10) unsigned NOT NULL DEFAULT '0',
sendpm int(10) unsigned NOT NULL DEFAULT '0',
friend int(10) unsigned NOT NULL DEFAULT '0',
addfriend int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (daytime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_statuser;
CREATE TABLE pre_common_statuser (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
daytime int(10) unsigned NOT NULL DEFAULT '0',
`type` char(20) NOT NULL DEFAULT '',
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_style;
CREATE TABLE pre_common_style (
styleid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL DEFAULT '',
available tinyint(1) NOT NULL DEFAULT '1',
templateid smallint(6) unsigned NOT NULL DEFAULT '0',
extstyle varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (styleid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_stylevar;
CREATE TABLE pre_common_stylevar (
stylevarid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
styleid smallint(6) unsigned NOT NULL DEFAULT '0',
variable text NOT NULL,
substitute text NOT NULL,
PRIMARY KEY (stylevarid),
KEY styleid (styleid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_syscache;
CREATE TABLE pre_common_syscache (
cname varchar(32) NOT NULL,
ctype tinyint(3) unsigned NOT NULL,
dateline int(10) unsigned NOT NULL,
`data` mediumblob NOT NULL,
PRIMARY KEY (cname)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_tag;
CREATE TABLE pre_common_tag (
tagid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
tagname char(20) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (tagid),
KEY tagname (tagname),
KEY `status` (`status`,tagid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_tagitem;
CREATE TABLE pre_common_tagitem (
tagid mediumint(8) unsigned NOT NULL DEFAULT '0',
itemid mediumint(8) unsigned NOT NULL DEFAULT '0',
idtype char(10) NOT NULL DEFAULT '',
UNIQUE KEY item (tagid,itemid,idtype),
KEY idtype (idtype,itemid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_task;
CREATE TABLE pre_common_task (
taskid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
relatedtaskid smallint(6) unsigned NOT NULL DEFAULT '0',
available tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(50) NOT NULL DEFAULT '',
description text NOT NULL,
icon varchar(150) NOT NULL DEFAULT '',
applicants mediumint(8) unsigned NOT NULL DEFAULT '0',
achievers mediumint(8) unsigned NOT NULL DEFAULT '0',
tasklimits mediumint(8) unsigned NOT NULL DEFAULT '0',
applyperm text NOT NULL,
scriptname varchar(50) NOT NULL DEFAULT '',
starttime int(10) unsigned NOT NULL DEFAULT '0',
endtime int(10) unsigned NOT NULL DEFAULT '0',
period int(10) unsigned NOT NULL DEFAULT '0',
periodtype tinyint(1) NOT NULL DEFAULT '0',
reward enum('credit','magic','medal','invite','group') NOT NULL DEFAULT 'credit',
prize varchar(15) NOT NULL DEFAULT '',
bonus int(10) NOT NULL DEFAULT '0',
displayorder smallint(6) unsigned NOT NULL DEFAULT '0',
version varchar(15) NOT NULL DEFAULT '',
PRIMARY KEY (taskid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_taskvar;
CREATE TABLE pre_common_taskvar (
taskvarid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
taskid smallint(6) unsigned NOT NULL DEFAULT '0',
sort enum('apply','complete') NOT NULL DEFAULT 'complete',
`name` varchar(100) NOT NULL DEFAULT '',
description varchar(255) NOT NULL DEFAULT '',
variable varchar(40) NOT NULL DEFAULT '',
`type` varchar(20) NOT NULL DEFAULT 'text',
`value` text NOT NULL,
PRIMARY KEY (taskvarid),
KEY taskid (taskid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_template;
CREATE TABLE pre_common_template (
templateid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '',
`directory` varchar(100) NOT NULL DEFAULT '',
copyright varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (templateid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_template_block;
CREATE TABLE pre_common_template_block (
targettplname varchar(100) NOT NULL DEFAULT '',
tpldirectory varchar(80) NOT NULL DEFAULT '',
bid mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (targettplname,tpldirectory,bid),
KEY bid (bid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_template_permission;
CREATE TABLE pre_common_template_permission (
targettplname varchar(100) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
allowmanage tinyint(1) NOT NULL DEFAULT '0',
allowrecommend tinyint(1) NOT NULL DEFAULT '0',
needverify tinyint(1) NOT NULL DEFAULT '0',
inheritedtplname varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (targettplname,uid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_uin_black;
CREATE TABLE pre_common_uin_black (
uin char(40) NOT NULL,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uin),
UNIQUE KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_usergroup;
CREATE TABLE pre_common_usergroup (
groupid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
radminid tinyint(3) NOT NULL DEFAULT '0',
`type` enum('system','special','member') NOT NULL DEFAULT 'member',
system varchar(255) NOT NULL DEFAULT 'private',
grouptitle varchar(255) NOT NULL DEFAULT '',
creditshigher int(10) NOT NULL DEFAULT '0',
creditslower int(10) NOT NULL DEFAULT '0',
stars tinyint(3) NOT NULL DEFAULT '0',
color varchar(255) NOT NULL DEFAULT '',
icon varchar(255) NOT NULL DEFAULT '',
allowvisit tinyint(1) NOT NULL DEFAULT '0',
allowsendpm tinyint(1) NOT NULL DEFAULT '1',
allowinvite tinyint(1) NOT NULL DEFAULT '0',
allowmailinvite tinyint(1) NOT NULL DEFAULT '0',
maxinvitenum tinyint(3) unsigned NOT NULL DEFAULT '0',
inviteprice smallint(6) unsigned NOT NULL DEFAULT '0',
maxinviteday smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (groupid),
KEY creditsrange (creditshigher,creditslower)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_usergroup_field;
CREATE TABLE pre_common_usergroup_field (
groupid smallint(6) unsigned NOT NULL,
readaccess tinyint(3) unsigned NOT NULL DEFAULT '0',
allowpost tinyint(1) NOT NULL DEFAULT '0',
allowreply tinyint(1) NOT NULL DEFAULT '0',
allowpostpoll tinyint(1) NOT NULL DEFAULT '0',
allowpostreward tinyint(1) NOT NULL DEFAULT '0',
allowposttrade tinyint(1) NOT NULL DEFAULT '0',
allowpostactivity tinyint(1) NOT NULL DEFAULT '0',
allowdirectpost tinyint(1) NOT NULL DEFAULT '0',
allowgetattach tinyint(1) NOT NULL DEFAULT '0',
allowgetimage tinyint(1) NOT NULL DEFAULT '0',
allowpostattach tinyint(1) NOT NULL DEFAULT '0',
allowpostimage tinyint(1) NOT NULL DEFAULT '0',
allowvote tinyint(1) NOT NULL DEFAULT '0',
allowsearch tinyint(1) NOT NULL DEFAULT '0',
allowcstatus tinyint(1) NOT NULL DEFAULT '0',
allowinvisible tinyint(1) NOT NULL DEFAULT '0',
allowtransfer tinyint(1) NOT NULL DEFAULT '0',
allowsetreadperm tinyint(1) NOT NULL DEFAULT '0',
allowsetattachperm tinyint(1) NOT NULL DEFAULT '0',
allowposttag tinyint(1) NOT NULL DEFAULT '0',
allowhidecode tinyint(1) NOT NULL DEFAULT '0',
allowhtml tinyint(1) NOT NULL DEFAULT '0',
allowanonymous tinyint(1) NOT NULL DEFAULT '0',
allowsigbbcode tinyint(1) NOT NULL DEFAULT '0',
allowsigimgcode tinyint(1) NOT NULL DEFAULT '0',
allowmagics tinyint(1) unsigned NOT NULL,
disableperiodctrl tinyint(1) NOT NULL DEFAULT '0',
reasonpm tinyint(1) NOT NULL DEFAULT '0',
maxprice smallint(6) unsigned NOT NULL DEFAULT '0',
maxsigsize smallint(6) unsigned NOT NULL DEFAULT '0',
maxattachsize int(10) unsigned NOT NULL DEFAULT '0',
maxsizeperday int(10) unsigned NOT NULL DEFAULT '0',
maxthreadsperhour tinyint(3) unsigned NOT NULL DEFAULT '0',
maxpostsperhour tinyint(3) unsigned NOT NULL DEFAULT '0',
attachextensions char(100) NOT NULL DEFAULT '',
raterange char(150) NOT NULL DEFAULT '',
loginreward char(150) NOT NULL DEFAULT '',
mintradeprice smallint(6) unsigned NOT NULL DEFAULT '1',
maxtradeprice smallint(6) unsigned NOT NULL DEFAULT '0',
minrewardprice smallint(6) unsigned NOT NULL DEFAULT '1',
maxrewardprice smallint(6) unsigned NOT NULL DEFAULT '0',
magicsdiscount tinyint(1) NOT NULL,
maxmagicsweight smallint(6) unsigned NOT NULL,
allowpostdebate tinyint(1) NOT NULL DEFAULT '0',
tradestick tinyint(1) unsigned NOT NULL,
exempt tinyint(1) unsigned NOT NULL,
maxattachnum smallint(6) NOT NULL DEFAULT '0',
allowposturl tinyint(1) NOT NULL DEFAULT '3',
allowrecommend tinyint(1) unsigned NOT NULL DEFAULT '1',
allowpostrushreply tinyint(1) NOT NULL DEFAULT '0',
maxfriendnum smallint(6) unsigned NOT NULL DEFAULT '0',
maxspacesize int(10) unsigned NOT NULL DEFAULT '0',
allowcomment tinyint(1) NOT NULL DEFAULT '0',
allowcommentarticle smallint(6) NOT NULL DEFAULT '0',
searchinterval smallint(6) unsigned NOT NULL DEFAULT '0',
searchignore tinyint(1) NOT NULL DEFAULT '0',
allowblog tinyint(1) NOT NULL DEFAULT '0',
allowdoing tinyint(1) NOT NULL DEFAULT '0',
allowupload tinyint(1) NOT NULL DEFAULT '0',
allowshare tinyint(1) NOT NULL DEFAULT '0',
allowblogmod tinyint(1) unsigned NOT NULL DEFAULT '0',
allowdoingmod tinyint(1) unsigned NOT NULL DEFAULT '0',
allowuploadmod tinyint(1) unsigned NOT NULL DEFAULT '0',
allowsharemod tinyint(1) unsigned NOT NULL DEFAULT '0',
allowcss tinyint(1) NOT NULL DEFAULT '0',
allowpoke tinyint(1) NOT NULL DEFAULT '0',
allowfriend tinyint(1) NOT NULL DEFAULT '0',
allowclick tinyint(1) NOT NULL DEFAULT '0',
allowmagic tinyint(1) NOT NULL DEFAULT '0',
allowstat tinyint(1) NOT NULL DEFAULT '0',
allowstatdata tinyint(1) NOT NULL DEFAULT '0',
videophotoignore tinyint(1) NOT NULL DEFAULT '0',
allowviewvideophoto tinyint(1) NOT NULL DEFAULT '0',
allowmyop tinyint(1) NOT NULL DEFAULT '0',
magicdiscount tinyint(1) NOT NULL DEFAULT '0',
domainlength smallint(6) unsigned NOT NULL DEFAULT '0',
seccode tinyint(1) NOT NULL DEFAULT '1',
disablepostctrl tinyint(1) NOT NULL DEFAULT '0',
allowbuildgroup tinyint(1) unsigned NOT NULL DEFAULT '0',
allowgroupdirectpost tinyint(1) unsigned NOT NULL DEFAULT '0',
allowgroupposturl tinyint(1) unsigned NOT NULL DEFAULT '0',
edittimelimit smallint(6) unsigned NOT NULL DEFAULT '0',
allowpostarticle tinyint(1) NOT NULL DEFAULT '0',
allowdownlocalimg tinyint(1) NOT NULL DEFAULT '0',
allowdownremoteimg tinyint(1) NOT NULL DEFAULT '0',
allowpostarticlemod tinyint(1) unsigned NOT NULL DEFAULT '0',
allowspacediyhtml tinyint(1) NOT NULL DEFAULT '0',
allowspacediybbcode tinyint(1) NOT NULL DEFAULT '0',
allowspacediyimgcode tinyint(1) NOT NULL DEFAULT '0',
allowcommentpost tinyint(1) NOT NULL DEFAULT '2',
allowcommentitem tinyint(1) NOT NULL DEFAULT '0',
allowcommentreply tinyint(1) NOT NULL DEFAULT '0',
allowreplycredit tinyint(1) NOT NULL DEFAULT '0',
ignorecensor tinyint(1) unsigned NOT NULL DEFAULT '0',
allowsendallpm tinyint(1) unsigned NOT NULL DEFAULT '0',
allowsendpmmaxnum smallint(6) unsigned NOT NULL DEFAULT '0',
maximagesize mediumint(8) unsigned NOT NULL DEFAULT '0',
allowmediacode tinyint(1) NOT NULL DEFAULT '0',
allowbegincode tinyint(1) unsigned NOT NULL DEFAULT '0',
allowat smallint(6) unsigned NOT NULL DEFAULT '0',
allowsetpublishdate tinyint(1) unsigned NOT NULL DEFAULT '0',
allowfollowcollection tinyint(1) unsigned NOT NULL DEFAULT '0',
allowcommentcollection tinyint(1) unsigned NOT NULL DEFAULT '0',
allowcreatecollection smallint(6) unsigned NOT NULL DEFAULT '0',
forcesecques tinyint(1) unsigned NOT NULL DEFAULT '0',
forcelogin tinyint(1) unsigned NOT NULL DEFAULT '0',
closead tinyint(1) unsigned NOT NULL DEFAULT '0',
buildgroupcredits smallint(6) unsigned NOT NULL DEFAULT '0',
allowimgcontent tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (groupid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_visit;
CREATE TABLE pre_common_visit (
ip int(10) unsigned NOT NULL DEFAULT '0',
`view` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (ip),
KEY ip (ip,`view`)
) TYPE=HEAP;
DROP TABLE IF EXISTS pre_common_word;
CREATE TABLE pre_common_word (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
admin varchar(15) NOT NULL DEFAULT '',
`type` smallint(6) NOT NULL DEFAULT '1',
find varchar(255) NOT NULL DEFAULT '',
replacement varchar(255) NOT NULL DEFAULT '',
extra varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_common_word_type;
CREATE TABLE pre_common_word_type (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
typename varchar(15) NOT NULL DEFAULT '',
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_connect_disktask;
CREATE TABLE pre_connect_disktask (
taskid int(10) unsigned NOT NULL AUTO_INCREMENT,
aid int(10) unsigned NOT NULL DEFAULT '0',
uid int(10) unsigned NOT NULL DEFAULT '0',
openid char(32) NOT NULL DEFAULT '',
filename varchar(255) NOT NULL DEFAULT '',
verifycode char(32) NOT NULL DEFAULT '',
`status` smallint(6) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
downloadtime int(10) unsigned NOT NULL DEFAULT '0',
extra text,
PRIMARY KEY (taskid),
KEY openid (openid),
KEY `status` (`status`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_connect_feedlog;
CREATE TABLE pre_connect_feedlog (
flid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
publishtimes mediumint(8) unsigned NOT NULL DEFAULT '0',
lastpublished int(10) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (flid),
UNIQUE KEY tid (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_connect_memberbindlog;
CREATE TABLE pre_connect_memberbindlog (
mblid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
uin char(40) NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (mblid),
KEY uid (uid),
KEY uin (uin),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_connect_postfeedlog;
CREATE TABLE pre_connect_postfeedlog (
flid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
publishtimes mediumint(8) unsigned NOT NULL DEFAULT '0',
lastpublished int(10) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (flid),
UNIQUE KEY pid (pid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_connect_tthreadlog;
CREATE TABLE pre_connect_tthreadlog (
twid char(16) NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
conopenid char(32) NOT NULL,
pagetime int(10) unsigned DEFAULT '0',
lasttwid char(16) DEFAULT NULL,
nexttime int(10) unsigned DEFAULT '0',
updatetime int(10) unsigned DEFAULT '0',
dateline int(10) unsigned DEFAULT '0',
PRIMARY KEY (twid),
KEY nexttime (tid,nexttime),
KEY updatetime (tid,updatetime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_access;
CREATE TABLE pre_forum_access (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
allowview tinyint(1) NOT NULL DEFAULT '0',
allowpost tinyint(1) NOT NULL DEFAULT '0',
allowreply tinyint(1) NOT NULL DEFAULT '0',
allowgetattach tinyint(1) NOT NULL DEFAULT '0',
allowgetimage tinyint(1) NOT NULL DEFAULT '0',
allowpostattach tinyint(1) NOT NULL DEFAULT '0',
allowpostimage tinyint(1) NOT NULL DEFAULT '0',
adminuser mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,fid),
KEY listorder (fid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_activity;
CREATE TABLE pre_forum_activity (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
aid mediumint(8) unsigned NOT NULL DEFAULT '0',
cost mediumint(8) unsigned NOT NULL DEFAULT '0',
starttimefrom int(10) unsigned NOT NULL DEFAULT '0',
starttimeto int(10) unsigned NOT NULL DEFAULT '0',
place varchar(255) NOT NULL DEFAULT '',
class varchar(255) NOT NULL DEFAULT '',
gender tinyint(1) NOT NULL DEFAULT '0',
number smallint(5) unsigned NOT NULL DEFAULT '0',
applynumber smallint(5) unsigned NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
ufield text NOT NULL,
credit smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid),
KEY uid (uid,starttimefrom),
KEY starttimefrom (starttimefrom),
KEY expiration (expiration),
KEY applynumber (applynumber)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_activityapply;
CREATE TABLE pre_forum_activityapply (
applyid int(10) unsigned NOT NULL AUTO_INCREMENT,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(255) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
message varchar(255) NOT NULL DEFAULT '',
verified tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
payment mediumint(8) NOT NULL DEFAULT '0',
ufielddata text NOT NULL,
PRIMARY KEY (applyid),
KEY uid (uid),
KEY tid (tid),
KEY dateline (tid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_announcement;
CREATE TABLE pre_forum_announcement (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
author varchar(15) NOT NULL DEFAULT '',
`subject` varchar(255) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
starttime int(10) unsigned NOT NULL DEFAULT '0',
endtime int(10) unsigned NOT NULL DEFAULT '0',
message text NOT NULL,
groups text NOT NULL,
PRIMARY KEY (id),
KEY timespan (starttime,endtime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment;
CREATE TABLE pre_forum_attachment (
aid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
tableid tinyint(1) unsigned NOT NULL DEFAULT '0',
downloads mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_0;
CREATE TABLE pre_forum_attachment_0 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_1;
CREATE TABLE pre_forum_attachment_1 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_2;
CREATE TABLE pre_forum_attachment_2 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_3;
CREATE TABLE pre_forum_attachment_3 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_4;
CREATE TABLE pre_forum_attachment_4 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_5;
CREATE TABLE pre_forum_attachment_5 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_6;
CREATE TABLE pre_forum_attachment_6 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_7;
CREATE TABLE pre_forum_attachment_7 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_8;
CREATE TABLE pre_forum_attachment_8 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_9;
CREATE TABLE pre_forum_attachment_9 (
aid mediumint(8) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
picid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY tid (tid),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_exif;
CREATE TABLE pre_forum_attachment_exif (
aid mediumint(8) unsigned NOT NULL,
exif text NOT NULL,
PRIMARY KEY (aid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachment_unused;
CREATE TABLE pre_forum_attachment_unused (
aid mediumint(8) unsigned NOT NULL,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_attachtype;
CREATE TABLE pre_forum_attachtype (
id smallint(6) unsigned NOT NULL AUTO_INCREMENT,
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
extension char(12) NOT NULL DEFAULT '',
maxsize int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY fid (fid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_bbcode;
CREATE TABLE pre_forum_bbcode (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
available tinyint(1) NOT NULL DEFAULT '0',
tag varchar(100) NOT NULL DEFAULT '',
icon varchar(255) NOT NULL,
replacement text NOT NULL,
example varchar(255) NOT NULL DEFAULT '',
explanation text NOT NULL,
params tinyint(1) unsigned NOT NULL DEFAULT '1',
prompt text NOT NULL,
nest tinyint(3) unsigned NOT NULL DEFAULT '1',
displayorder tinyint(3) NOT NULL DEFAULT '0',
perm text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_collection;
CREATE TABLE pre_forum_collection (
ctid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
`name` varchar(50) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
follownum mediumint(8) unsigned NOT NULL DEFAULT '0',
threadnum mediumint(8) unsigned NOT NULL DEFAULT '0',
commentnum mediumint(8) unsigned NOT NULL DEFAULT '0',
`desc` varchar(255) NOT NULL DEFAULT '',
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
rate float NOT NULL DEFAULT '0',
ratenum mediumint(8) unsigned NOT NULL DEFAULT '0',
lastpost mediumint(8) unsigned NOT NULL DEFAULT '0',
lastsubject varchar(80) NOT NULL DEFAULT '',
lastposttime int(10) unsigned NOT NULL DEFAULT '0',
lastposter varchar(15) NOT NULL DEFAULT '',
lastvisit int(10) unsigned NOT NULL DEFAULT '0',
keyword varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (ctid),
KEY dateline (dateline),
KEY hotcollection (threadnum,lastupdate),
KEY follownum (follownum),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_collectioncomment;
CREATE TABLE pre_forum_collectioncomment (
cid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
ctid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
message text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
useip varchar(16) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
rate float NOT NULL DEFAULT '0',
PRIMARY KEY (cid),
KEY ctid (ctid,dateline),
KEY userrate (ctid,uid,rate)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_collectionfollow;
CREATE TABLE pre_forum_collectionfollow (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username char(15) NOT NULL DEFAULT '',
ctid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
lastvisit int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,ctid),
KEY ctid (ctid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_collectioninvite;
CREATE TABLE pre_forum_collectioninvite (
ctid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (ctid,uid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_collectionrelated;
CREATE TABLE pre_forum_collectionrelated (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
collection text NOT NULL,
PRIMARY KEY (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_collectionteamworker;
CREATE TABLE pre_forum_collectionteamworker (
ctid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
`name` varchar(50) NOT NULL DEFAULT '',
username varchar(15) NOT NULL DEFAULT '',
lastvisit int(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (ctid,uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_collectionthread;
CREATE TABLE pre_forum_collectionthread (
ctid mediumint(8) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
reason varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (ctid,tid),
KEY ctid (ctid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_creditslog;
CREATE TABLE pre_forum_creditslog (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
fromto char(15) NOT NULL DEFAULT '',
sendcredits tinyint(1) NOT NULL DEFAULT '0',
receivecredits tinyint(1) NOT NULL DEFAULT '0',
send int(10) unsigned NOT NULL DEFAULT '0',
receive int(10) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
operation char(3) NOT NULL DEFAULT '',
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_debate;
CREATE TABLE pre_forum_debate (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
starttime int(10) unsigned NOT NULL DEFAULT '0',
endtime int(10) unsigned NOT NULL DEFAULT '0',
affirmdebaters mediumint(8) unsigned NOT NULL DEFAULT '0',
negadebaters mediumint(8) unsigned NOT NULL DEFAULT '0',
affirmvotes mediumint(8) unsigned NOT NULL DEFAULT '0',
negavotes mediumint(8) unsigned NOT NULL DEFAULT '0',
umpire varchar(15) NOT NULL DEFAULT '',
winner tinyint(1) NOT NULL DEFAULT '0',
bestdebater varchar(50) NOT NULL DEFAULT '',
affirmpoint text NOT NULL,
negapoint text NOT NULL,
umpirepoint text NOT NULL,
affirmvoterids text NOT NULL,
negavoterids text NOT NULL,
affirmreplies mediumint(8) unsigned NOT NULL,
negareplies mediumint(8) unsigned NOT NULL,
PRIMARY KEY (tid),
KEY uid (uid,starttime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_debatepost;
CREATE TABLE pre_forum_debatepost (
pid int(10) unsigned NOT NULL DEFAULT '0',
stand tinyint(1) NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
voters mediumint(10) unsigned NOT NULL DEFAULT '0',
voterids text NOT NULL,
PRIMARY KEY (pid),
KEY pid (pid,stand),
KEY tid (tid,uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_faq;
CREATE TABLE pre_forum_faq (
id smallint(6) NOT NULL AUTO_INCREMENT,
fpid smallint(6) unsigned NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
identifier varchar(20) NOT NULL,
keyword varchar(50) NOT NULL,
title varchar(50) NOT NULL,
message text NOT NULL,
PRIMARY KEY (id),
KEY displayplay (displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_filter_post;
CREATE TABLE pre_forum_filter_post (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
postlength int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid,pid),
KEY tid (tid,postlength)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_forum;
CREATE TABLE pre_forum_forum (
fid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
fup mediumint(8) unsigned NOT NULL DEFAULT '0',
`type` enum('group','forum','sub') NOT NULL DEFAULT 'forum',
`name` char(50) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '0',
displayorder smallint(6) NOT NULL DEFAULT '0',
styleid smallint(6) unsigned NOT NULL DEFAULT '0',
threads mediumint(8) unsigned NOT NULL DEFAULT '0',
posts mediumint(8) unsigned NOT NULL DEFAULT '0',
todayposts mediumint(8) unsigned NOT NULL DEFAULT '0',
yesterdayposts mediumint(8) unsigned NOT NULL DEFAULT '0',
rank smallint(6) unsigned NOT NULL DEFAULT '0',
oldrank smallint(6) unsigned NOT NULL DEFAULT '0',
lastpost char(110) NOT NULL DEFAULT '',
domain char(15) NOT NULL DEFAULT '',
allowsmilies tinyint(1) NOT NULL DEFAULT '0',
allowhtml tinyint(1) NOT NULL DEFAULT '0',
allowbbcode tinyint(1) NOT NULL DEFAULT '0',
allowimgcode tinyint(1) NOT NULL DEFAULT '0',
allowmediacode tinyint(1) NOT NULL DEFAULT '0',
allowanonymous tinyint(1) NOT NULL DEFAULT '0',
allowpostspecial smallint(6) unsigned NOT NULL DEFAULT '0',
allowspecialonly tinyint(1) unsigned NOT NULL DEFAULT '0',
allowappend tinyint(1) unsigned NOT NULL DEFAULT '0',
alloweditrules tinyint(1) NOT NULL DEFAULT '0',
allowfeed tinyint(1) NOT NULL DEFAULT '1',
allowside tinyint(1) NOT NULL DEFAULT '0',
recyclebin tinyint(1) NOT NULL DEFAULT '0',
modnewposts tinyint(1) NOT NULL DEFAULT '0',
jammer tinyint(1) NOT NULL DEFAULT '0',
disablewatermark tinyint(1) NOT NULL DEFAULT '0',
inheritedmod tinyint(1) NOT NULL DEFAULT '0',
autoclose smallint(6) NOT NULL DEFAULT '0',
forumcolumns tinyint(3) unsigned NOT NULL DEFAULT '0',
catforumcolumns tinyint(3) unsigned NOT NULL DEFAULT '0',
threadcaches tinyint(1) NOT NULL DEFAULT '0',
alloweditpost tinyint(1) unsigned NOT NULL DEFAULT '1',
`simple` tinyint(1) unsigned NOT NULL DEFAULT '0',
modworks tinyint(1) unsigned NOT NULL DEFAULT '0',
allowglobalstick tinyint(1) NOT NULL DEFAULT '1',
`level` smallint(6) NOT NULL DEFAULT '0',
commoncredits int(10) unsigned NOT NULL DEFAULT '0',
archive tinyint(1) NOT NULL DEFAULT '0',
recommend smallint(6) unsigned NOT NULL DEFAULT '0',
favtimes mediumint(8) unsigned NOT NULL DEFAULT '0',
sharetimes mediumint(8) unsigned NOT NULL DEFAULT '0',
disablethumb tinyint(1) NOT NULL DEFAULT '0',
disablecollect tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (fid),
KEY forum (`status`,`type`,displayorder),
KEY fup_type (fup,`type`,displayorder),
KEY fup (fup)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_forum_threadtable;
CREATE TABLE pre_forum_forum_threadtable (
fid smallint(6) unsigned NOT NULL,
threadtableid smallint(6) unsigned NOT NULL,
threads int(11) unsigned NOT NULL DEFAULT '0',
posts int(11) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (fid,threadtableid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_forumfield;
CREATE TABLE pre_forum_forumfield (
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
description text NOT NULL,
`password` varchar(12) NOT NULL DEFAULT '',
icon varchar(255) NOT NULL DEFAULT '',
redirect varchar(255) NOT NULL DEFAULT '',
attachextensions varchar(255) NOT NULL DEFAULT '',
creditspolicy mediumtext NOT NULL,
formulaperm text NOT NULL,
moderators text NOT NULL,
rules text NOT NULL,
threadtypes text NOT NULL,
threadsorts text NOT NULL,
viewperm text NOT NULL,
postperm text NOT NULL,
replyperm text NOT NULL,
getattachperm text NOT NULL,
postattachperm text NOT NULL,
postimageperm text NOT NULL,
spviewperm text NOT NULL,
seotitle text NOT NULL,
keywords text NOT NULL,
seodescription text NOT NULL,
supe_pushsetting text NOT NULL,
modrecommend text NOT NULL,
threadplugin text NOT NULL,
replybg text NOT NULL,
extra text NOT NULL,
jointype tinyint(1) NOT NULL DEFAULT '0',
gviewperm tinyint(1) unsigned NOT NULL DEFAULT '0',
membernum smallint(6) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
activity int(10) unsigned NOT NULL DEFAULT '0',
founderuid mediumint(8) unsigned NOT NULL DEFAULT '0',
foundername varchar(255) NOT NULL DEFAULT '',
banner varchar(255) NOT NULL DEFAULT '',
groupnum smallint(6) unsigned NOT NULL DEFAULT '0',
commentitem text NOT NULL,
relatedgroup text NOT NULL,
picstyle tinyint(1) NOT NULL DEFAULT '0',
widthauto tinyint(1) NOT NULL DEFAULT '0',
noantitheft tinyint(1) NOT NULL DEFAULT '0',
noforumhidewater tinyint(1) NOT NULL DEFAULT '0',
noforumrecommend tinyint(1) NOT NULL DEFAULT '0',
livetid mediumint(8) unsigned NOT NULL DEFAULT '0',
price mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (fid),
KEY membernum (membernum),
KEY dateline (dateline),
KEY lastupdate (lastupdate),
KEY activity (activity)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_forumrecommend;
CREATE TABLE pre_forum_forumrecommend (
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL,
typeid smallint(6) NOT NULL,
displayorder tinyint(1) NOT NULL,
`subject` char(80) NOT NULL,
author char(15) NOT NULL,
authorid mediumint(8) NOT NULL,
moderatorid mediumint(8) NOT NULL,
expiration int(10) unsigned NOT NULL,
position tinyint(1) NOT NULL DEFAULT '0',
highlight tinyint(1) NOT NULL DEFAULT '0',
aid mediumint(8) unsigned NOT NULL DEFAULT '0',
filename char(100) NOT NULL DEFAULT '',
PRIMARY KEY (tid),
KEY displayorder (fid,displayorder),
KEY position (position)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_groupcreditslog;
CREATE TABLE pre_forum_groupcreditslog (
fid mediumint(8) unsigned NOT NULL,
uid mediumint(8) unsigned NOT NULL,
logdate int(8) NOT NULL DEFAULT '0',
PRIMARY KEY (fid,uid,logdate)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_groupfield;
CREATE TABLE pre_forum_groupfield (
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
privacy tinyint(1) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
`type` varchar(255) NOT NULL,
`data` text NOT NULL,
UNIQUE KEY `types` (fid,`type`),
KEY fid (fid),
KEY `type` (`type`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_groupinvite;
CREATE TABLE pre_forum_groupinvite (
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
inviteuid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
UNIQUE KEY ids (fid,inviteuid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_grouplevel;
CREATE TABLE pre_forum_grouplevel (
levelid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`type` enum('special','default') NOT NULL DEFAULT 'default',
leveltitle varchar(255) NOT NULL DEFAULT '',
creditshigher int(10) NOT NULL DEFAULT '0',
creditslower int(10) NOT NULL DEFAULT '0',
icon varchar(255) NOT NULL DEFAULT '',
creditspolicy text NOT NULL,
postpolicy text NOT NULL,
specialswitch text NOT NULL,
PRIMARY KEY (levelid),
KEY creditsrange (creditshigher,creditslower)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_groupuser;
CREATE TABLE pre_forum_groupuser (
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username char(15) NOT NULL,
`level` tinyint(3) unsigned NOT NULL DEFAULT '0',
threads mediumint(8) unsigned NOT NULL DEFAULT '0',
replies mediumint(8) unsigned NOT NULL DEFAULT '0',
joindateline int(10) unsigned NOT NULL DEFAULT '0',
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
privacy tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (fid,uid),
KEY uid_lastupdate (uid,lastupdate),
KEY userlist (fid,`level`,lastupdate)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_hotreply_member;
CREATE TABLE pre_forum_hotreply_member (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
attitude tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (pid,uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_hotreply_number;
CREATE TABLE pre_forum_hotreply_number (
pid int(10) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
support smallint(6) unsigned NOT NULL DEFAULT '0',
`against` smallint(6) unsigned NOT NULL DEFAULT '0',
total mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (pid),
KEY tid (tid,total)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_imagetype;
CREATE TABLE pre_forum_imagetype (
typeid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
available tinyint(1) NOT NULL DEFAULT '0',
`name` char(20) NOT NULL,
`type` enum('smiley','icon','avatar') NOT NULL DEFAULT 'smiley',
displayorder tinyint(3) NOT NULL DEFAULT '0',
`directory` char(100) NOT NULL,
PRIMARY KEY (typeid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_medal;
CREATE TABLE pre_forum_medal (
medalid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '',
available tinyint(1) NOT NULL DEFAULT '0',
image varchar(255) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
description varchar(255) NOT NULL,
expiration smallint(6) unsigned NOT NULL DEFAULT '0',
permission mediumtext NOT NULL,
credit tinyint(1) unsigned NOT NULL DEFAULT '0',
price mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (medalid),
KEY displayorder (displayorder),
KEY available (available,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_medallog;
CREATE TABLE pre_forum_medallog (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
medalid smallint(6) unsigned NOT NULL DEFAULT '0',
`type` tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `type` (`type`),
KEY `status` (`status`,expiration),
KEY uid (uid,medalid,`type`),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_memberrecommend;
CREATE TABLE pre_forum_memberrecommend (
tid mediumint(8) unsigned NOT NULL,
recommenduid mediumint(8) unsigned NOT NULL,
dateline int(10) unsigned NOT NULL,
KEY tid (tid),
KEY uid (recommenduid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_moderator;
CREATE TABLE pre_forum_moderator (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
inherited tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (uid,fid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_modwork;
CREATE TABLE pre_forum_modwork (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
modaction char(3) NOT NULL DEFAULT '',
dateline date NOT NULL DEFAULT '2006-01-01',
count smallint(6) unsigned NOT NULL DEFAULT '0',
posts smallint(6) unsigned NOT NULL DEFAULT '0',
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_newthread;
CREATE TABLE pre_forum_newthread (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid),
KEY fid (fid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_onlinelist;
CREATE TABLE pre_forum_onlinelist (
groupid smallint(6) unsigned NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
title varchar(30) NOT NULL DEFAULT '',
url varchar(30) NOT NULL DEFAULT ''
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_order;
CREATE TABLE pre_forum_order (
orderid char(32) NOT NULL DEFAULT '',
`status` char(3) NOT NULL DEFAULT '',
buyer char(50) NOT NULL DEFAULT '',
admin char(15) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
amount int(10) unsigned NOT NULL DEFAULT '0',
price float(7,2) unsigned NOT NULL DEFAULT '0.00',
submitdate int(10) unsigned NOT NULL DEFAULT '0',
confirmdate int(10) unsigned NOT NULL DEFAULT '0',
email char(40) NOT NULL DEFAULT '',
ip char(15) NOT NULL DEFAULT '',
UNIQUE KEY orderid (orderid),
KEY submitdate (submitdate),
KEY uid (uid,submitdate)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_poll;
CREATE TABLE pre_forum_poll (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
overt tinyint(1) NOT NULL DEFAULT '0',
multiple tinyint(1) NOT NULL DEFAULT '0',
visible tinyint(1) NOT NULL DEFAULT '0',
maxchoices tinyint(3) unsigned NOT NULL DEFAULT '0',
isimage tinyint(1) NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
pollpreview varchar(255) NOT NULL DEFAULT '',
voters mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_polloption;
CREATE TABLE pre_forum_polloption (
polloptionid int(10) unsigned NOT NULL AUTO_INCREMENT,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
votes mediumint(8) unsigned NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
polloption varchar(80) NOT NULL DEFAULT '',
voterids mediumtext NOT NULL,
PRIMARY KEY (polloptionid),
KEY tid (tid,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_polloption_image;
CREATE TABLE pre_forum_polloption_image (
aid int(10) unsigned NOT NULL AUTO_INCREMENT,
poid int(10) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
width smallint(6) unsigned NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (aid),
KEY poid (poid),
KEY tid (tid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_pollvoter;
CREATE TABLE pre_forum_pollvoter (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
`options` text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
KEY tid (tid),
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_post;
CREATE TABLE pre_forum_post (
pid int(10) unsigned NOT NULL,
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
`first` tinyint(1) NOT NULL DEFAULT '0',
author varchar(15) NOT NULL DEFAULT '',
authorid mediumint(8) unsigned NOT NULL DEFAULT '0',
`subject` varchar(80) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
message mediumtext NOT NULL,
useip varchar(15) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
invisible tinyint(1) NOT NULL DEFAULT '0',
anonymous tinyint(1) NOT NULL DEFAULT '0',
usesig tinyint(1) NOT NULL DEFAULT '0',
htmlon tinyint(1) NOT NULL DEFAULT '0',
bbcodeoff tinyint(1) NOT NULL DEFAULT '0',
smileyoff tinyint(1) NOT NULL DEFAULT '0',
parseurloff tinyint(1) NOT NULL DEFAULT '0',
attachment tinyint(1) NOT NULL DEFAULT '0',
rate smallint(6) NOT NULL DEFAULT '0',
ratetimes tinyint(3) unsigned NOT NULL DEFAULT '0',
`status` int(10) NOT NULL DEFAULT '0',
tags varchar(255) NOT NULL DEFAULT '0',
`comment` tinyint(1) NOT NULL DEFAULT '0',
replycredit int(10) NOT NULL DEFAULT '0',
position int(8) unsigned NOT NULL AUTO_INCREMENT,
PRIMARY KEY (tid,position),
UNIQUE KEY pid (pid),
KEY fid (fid),
KEY authorid (authorid,invisible),
KEY dateline (dateline),
KEY invisible (invisible),
KEY displayorder (tid,invisible,dateline),
KEY `first` (tid,`first`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_post_location;
CREATE TABLE pre_forum_post_location (
pid int(10) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned DEFAULT '0',
uid mediumint(8) unsigned DEFAULT '0',
mapx varchar(255) NOT NULL,
mapy varchar(255) NOT NULL,
location varchar(255) NOT NULL,
PRIMARY KEY (pid),
KEY tid (tid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_post_moderate;
CREATE TABLE pre_forum_post_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `status` (`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_post_tableid;
CREATE TABLE pre_forum_post_tableid (
pid int(10) unsigned NOT NULL AUTO_INCREMENT,
PRIMARY KEY (pid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_postcache;
CREATE TABLE pre_forum_postcache (
pid int(10) unsigned NOT NULL,
`comment` text NOT NULL,
rate text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (pid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_postcomment;
CREATE TABLE pre_forum_postcomment (
id int(10) unsigned NOT NULL AUTO_INCREMENT,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
author varchar(15) NOT NULL DEFAULT '',
authorid mediumint(8) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
`comment` varchar(255) NOT NULL DEFAULT '',
score tinyint(1) NOT NULL DEFAULT '0',
useip varchar(15) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
rpid int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY tid (tid),
KEY authorid (authorid),
KEY score (score),
KEY rpid (rpid),
KEY pid (pid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_postlog;
CREATE TABLE pre_forum_postlog (
pid int(10) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid smallint(6) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
`action` char(10) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (pid,tid),
KEY fid (fid),
KEY uid (uid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_poststick;
CREATE TABLE pre_forum_poststick (
tid mediumint(8) unsigned NOT NULL,
pid int(10) unsigned NOT NULL,
position int(10) unsigned NOT NULL,
dateline int(10) unsigned NOT NULL,
PRIMARY KEY (tid,pid),
KEY dateline (tid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_promotion;
CREATE TABLE pre_forum_promotion (
ip char(15) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username char(15) NOT NULL DEFAULT '',
PRIMARY KEY (ip)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_ratelog;
CREATE TABLE pre_forum_ratelog (
pid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username char(15) NOT NULL DEFAULT '',
extcredits tinyint(1) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
score smallint(6) NOT NULL DEFAULT '0',
reason char(40) NOT NULL DEFAULT '',
KEY pid (pid,dateline),
KEY dateline (dateline),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_relatedthread;
CREATE TABLE pre_forum_relatedthread (
tid mediumint(8) NOT NULL DEFAULT '0',
`type` enum('general','trade') NOT NULL DEFAULT 'general',
expiration int(10) NOT NULL DEFAULT '0',
keywords varchar(255) NOT NULL DEFAULT '',
relatedthreads text NOT NULL,
PRIMARY KEY (tid,`type`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_replycredit;
CREATE TABLE pre_forum_replycredit (
tid mediumint(6) unsigned NOT NULL,
extcredits mediumint(6) unsigned NOT NULL DEFAULT '0',
extcreditstype tinyint(1) NOT NULL DEFAULT '0',
times smallint(6) unsigned NOT NULL DEFAULT '0',
membertimes smallint(6) unsigned NOT NULL DEFAULT '0',
random tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_rsscache;
CREATE TABLE pre_forum_rsscache (
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
forum char(50) NOT NULL DEFAULT '',
author char(15) NOT NULL DEFAULT '',
`subject` char(80) NOT NULL DEFAULT '',
description char(255) NOT NULL DEFAULT '',
guidetype char(10) NOT NULL DEFAULT '',
UNIQUE KEY tid (tid),
KEY fid (fid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_sofa;
CREATE TABLE pre_forum_sofa (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid),
KEY ftid (fid,tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_spacecache;
CREATE TABLE pre_forum_spacecache (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
variable varchar(20) NOT NULL,
`value` text NOT NULL,
expiration int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,variable)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_statlog;
CREATE TABLE pre_forum_statlog (
logdate date NOT NULL,
fid mediumint(8) unsigned NOT NULL,
`type` smallint(5) unsigned NOT NULL DEFAULT '0',
`value` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (logdate,fid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_thread;
CREATE TABLE pre_forum_thread (
tid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
posttableid smallint(6) unsigned NOT NULL DEFAULT '0',
typeid smallint(6) unsigned NOT NULL DEFAULT '0',
sortid smallint(6) unsigned NOT NULL DEFAULT '0',
readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
price smallint(6) NOT NULL DEFAULT '0',
author char(15) NOT NULL DEFAULT '',
authorid mediumint(8) unsigned NOT NULL DEFAULT '0',
`subject` char(80) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
lastpost int(10) unsigned NOT NULL DEFAULT '0',
lastposter char(15) NOT NULL DEFAULT '',
views int(10) unsigned NOT NULL DEFAULT '0',
replies mediumint(8) unsigned NOT NULL DEFAULT '0',
displayorder tinyint(1) NOT NULL DEFAULT '0',
highlight tinyint(1) NOT NULL DEFAULT '0',
digest tinyint(1) NOT NULL DEFAULT '0',
rate tinyint(1) NOT NULL DEFAULT '0',
special tinyint(1) NOT NULL DEFAULT '0',
attachment tinyint(1) NOT NULL DEFAULT '0',
moderated tinyint(1) NOT NULL DEFAULT '0',
closed mediumint(8) unsigned NOT NULL DEFAULT '0',
stickreply tinyint(1) unsigned NOT NULL DEFAULT '0',
recommends smallint(6) NOT NULL DEFAULT '0',
recommend_add smallint(6) NOT NULL DEFAULT '0',
recommend_sub smallint(6) NOT NULL DEFAULT '0',
heats int(10) unsigned NOT NULL DEFAULT '0',
`status` smallint(6) unsigned NOT NULL DEFAULT '0',
isgroup tinyint(1) NOT NULL DEFAULT '0',
favtimes mediumint(8) NOT NULL DEFAULT '0',
sharetimes mediumint(8) NOT NULL DEFAULT '0',
stamp tinyint(3) NOT NULL DEFAULT '-1',
icon tinyint(3) NOT NULL DEFAULT '-1',
pushedaid mediumint(8) NOT NULL DEFAULT '0',
cover smallint(6) NOT NULL DEFAULT '0',
replycredit smallint(6) NOT NULL DEFAULT '0',
relatebytag char(255) NOT NULL DEFAULT '0',
maxposition int(8) unsigned NOT NULL DEFAULT '0',
bgcolor char(8) NOT NULL DEFAULT '',
comments int(10) unsigned NOT NULL DEFAULT '0',
hidden smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid),
KEY digest (digest),
KEY sortid (sortid),
KEY displayorder (fid,displayorder,lastpost),
KEY typeid (fid,typeid,displayorder,lastpost),
KEY recommends (recommends),
KEY heats (heats),
KEY authorid (authorid),
KEY isgroup (isgroup,lastpost),
KEY special (special)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_thread_moderate;
CREATE TABLE pre_forum_thread_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `status` (`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadaddviews;
CREATE TABLE pre_forum_threadaddviews (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
addviews int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadcalendar;
CREATE TABLE pre_forum_threadcalendar (
cid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
hotnum int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (cid),
KEY fid (fid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadclass;
CREATE TABLE pre_forum_threadclass (
typeid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
fid mediumint(8) unsigned NOT NULL,
`name` varchar(255) NOT NULL,
displayorder mediumint(9) NOT NULL,
icon varchar(255) NOT NULL,
moderators tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (typeid),
KEY fid (fid,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadclosed;
CREATE TABLE pre_forum_threadclosed (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
redirect mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threaddisablepos;
CREATE TABLE pre_forum_threaddisablepos (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid)
) TYPE=HEAP;
DROP TABLE IF EXISTS pre_forum_threadhidelog;
CREATE TABLE pre_forum_threadhidelog (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
UNIQUE KEY uid (tid,uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadhot;
CREATE TABLE pre_forum_threadhot (
cid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (cid,tid),
KEY fid (fid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadimage;
CREATE TABLE pre_forum_threadimage (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
KEY tid (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadlog;
CREATE TABLE pre_forum_threadlog (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid smallint(6) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
otherid smallint(6) unsigned NOT NULL DEFAULT '0',
`action` char(10) NOT NULL,
expiry int(10) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid,fid,uid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadmod;
CREATE TABLE pre_forum_threadmod (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username char(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
`action` char(5) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '0',
magicid smallint(6) unsigned NOT NULL,
stamp tinyint(3) NOT NULL,
reason char(40) NOT NULL DEFAULT '',
KEY tid (tid,dateline),
KEY expiration (expiration,`status`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadpartake;
CREATE TABLE pre_forum_threadpartake (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
KEY tid (tid,uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadpreview;
CREATE TABLE pre_forum_threadpreview (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
`relay` int(10) unsigned NOT NULL DEFAULT '0',
content text NOT NULL,
PRIMARY KEY (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadprofile;
CREATE TABLE pre_forum_threadprofile (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`name` char(100) NOT NULL DEFAULT '',
template text NOT NULL,
`global` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `global` (`global`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadprofile_group;
CREATE TABLE pre_forum_threadprofile_group (
gid mediumint(8) NOT NULL,
tpid mediumint(8) unsigned NOT NULL,
PRIMARY KEY (gid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadrush;
CREATE TABLE pre_forum_threadrush (
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
stopfloor mediumint(8) unsigned NOT NULL DEFAULT '0',
starttimefrom int(10) unsigned NOT NULL DEFAULT '0',
starttimeto int(10) unsigned NOT NULL DEFAULT '0',
rewardfloor text NOT NULL,
creditlimit int(10) NOT NULL DEFAULT '-996',
replylimit smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (tid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_threadtype;
CREATE TABLE pre_forum_threadtype (
typeid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
displayorder smallint(6) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
description varchar(255) NOT NULL DEFAULT '',
icon varchar(255) NOT NULL DEFAULT '',
special smallint(6) NOT NULL DEFAULT '0',
modelid smallint(6) unsigned NOT NULL DEFAULT '0',
expiration tinyint(1) NOT NULL DEFAULT '0',
template text NOT NULL,
stemplate text NOT NULL,
ptemplate text NOT NULL,
btemplate text NOT NULL,
PRIMARY KEY (typeid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_trade;
CREATE TABLE pre_forum_trade (
tid mediumint(8) unsigned NOT NULL,
pid int(10) unsigned NOT NULL,
typeid smallint(6) unsigned NOT NULL,
sellerid mediumint(8) unsigned NOT NULL,
seller char(15) NOT NULL,
account char(50) NOT NULL,
tenpayaccount char(20) NOT NULL DEFAULT '',
`subject` char(100) NOT NULL,
price decimal(8,2) NOT NULL,
amount smallint(6) unsigned NOT NULL DEFAULT '1',
quality tinyint(1) unsigned NOT NULL DEFAULT '0',
locus char(20) NOT NULL,
transport tinyint(1) NOT NULL DEFAULT '0',
ordinaryfee smallint(4) unsigned NOT NULL DEFAULT '0',
expressfee smallint(4) unsigned NOT NULL DEFAULT '0',
emsfee smallint(4) unsigned NOT NULL DEFAULT '0',
itemtype tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
lastbuyer char(15) NOT NULL,
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
totalitems smallint(5) unsigned NOT NULL DEFAULT '0',
tradesum decimal(8,2) NOT NULL DEFAULT '0.00',
closed tinyint(1) NOT NULL DEFAULT '0',
aid mediumint(8) unsigned NOT NULL,
displayorder tinyint(1) NOT NULL,
costprice decimal(8,2) NOT NULL,
credit int(10) unsigned NOT NULL DEFAULT '0',
costcredit int(10) unsigned NOT NULL DEFAULT '0',
credittradesum int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (tid,pid),
KEY pid (pid),
KEY sellerid (sellerid),
KEY totalitems (totalitems),
KEY tradesum (tradesum),
KEY displayorder (tid,displayorder),
KEY sellertrades (sellerid,tradesum,totalitems),
KEY typeid (typeid),
KEY credittradesum (credittradesum),
KEY expiration (expiration)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_tradecomment;
CREATE TABLE pre_forum_tradecomment (
id mediumint(8) NOT NULL AUTO_INCREMENT,
orderid char(32) NOT NULL,
pid int(10) unsigned NOT NULL,
`type` tinyint(1) NOT NULL,
raterid mediumint(8) unsigned NOT NULL,
rater char(15) NOT NULL,
rateeid mediumint(8) unsigned NOT NULL,
ratee char(15) NOT NULL,
message char(200) NOT NULL,
explanation char(200) NOT NULL,
score tinyint(1) NOT NULL,
dateline int(10) unsigned NOT NULL,
PRIMARY KEY (id),
KEY raterid (raterid,`type`,dateline),
KEY rateeid (rateeid,`type`,dateline),
KEY orderid (orderid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_tradelog;
CREATE TABLE pre_forum_tradelog (
tid mediumint(8) unsigned NOT NULL,
pid int(10) unsigned NOT NULL,
orderid varchar(32) NOT NULL,
tradeno varchar(32) NOT NULL,
paytype tinyint(1) unsigned NOT NULL DEFAULT '0',
`subject` varchar(100) NOT NULL,
price decimal(8,2) NOT NULL DEFAULT '0.00',
quality tinyint(1) unsigned NOT NULL DEFAULT '0',
itemtype tinyint(1) NOT NULL DEFAULT '0',
number smallint(5) unsigned NOT NULL DEFAULT '0',
tax decimal(6,2) unsigned NOT NULL DEFAULT '0.00',
locus varchar(100) NOT NULL,
sellerid mediumint(8) unsigned NOT NULL,
seller varchar(15) NOT NULL,
selleraccount varchar(50) NOT NULL,
tenpayaccount varchar(20) NOT NULL DEFAULT '0',
buyerid mediumint(8) unsigned NOT NULL,
buyer varchar(15) NOT NULL,
buyercontact varchar(50) NOT NULL,
buyercredits smallint(5) unsigned NOT NULL DEFAULT '0',
buyermsg varchar(200) DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
offline tinyint(1) NOT NULL DEFAULT '0',
buyername varchar(50) NOT NULL,
buyerzip varchar(10) NOT NULL,
buyerphone varchar(20) NOT NULL,
buyermobile varchar(20) NOT NULL,
transport tinyint(1) NOT NULL DEFAULT '0',
transportfee smallint(6) unsigned NOT NULL DEFAULT '0',
baseprice decimal(8,2) NOT NULL,
discount tinyint(1) NOT NULL DEFAULT '0',
ratestatus tinyint(1) NOT NULL DEFAULT '0',
message text NOT NULL,
credit int(10) unsigned NOT NULL DEFAULT '0',
basecredit int(10) unsigned NOT NULL DEFAULT '0',
UNIQUE KEY orderid (orderid),
KEY sellerid (sellerid),
KEY buyerid (buyerid),
KEY `status` (`status`),
KEY buyerlog (buyerid,`status`,lastupdate),
KEY sellerlog (sellerid,`status`,lastupdate),
KEY tid (tid,pid),
KEY pid (pid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_typeoption;
CREATE TABLE pre_forum_typeoption (
optionid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
classid smallint(6) unsigned NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
expiration tinyint(1) NOT NULL,
protect varchar(255) NOT NULL,
title varchar(255) NOT NULL DEFAULT '',
description varchar(255) NOT NULL DEFAULT '',
identifier varchar(255) NOT NULL DEFAULT '',
`type` varchar(255) NOT NULL DEFAULT '',
unit varchar(255) NOT NULL,
rules mediumtext NOT NULL,
permprompt mediumtext NOT NULL,
PRIMARY KEY (optionid),
KEY classid (classid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_typeoptionvar;
CREATE TABLE pre_forum_typeoptionvar (
sortid smallint(6) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
optionid smallint(6) unsigned NOT NULL DEFAULT '0',
expiration int(10) unsigned NOT NULL DEFAULT '0',
`value` mediumtext NOT NULL,
KEY sortid (sortid),
KEY tid (tid),
KEY fid (fid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_typevar;
CREATE TABLE pre_forum_typevar (
sortid smallint(6) NOT NULL DEFAULT '0',
optionid smallint(6) NOT NULL DEFAULT '0',
available tinyint(1) NOT NULL DEFAULT '0',
required tinyint(1) NOT NULL DEFAULT '0',
unchangeable tinyint(1) NOT NULL DEFAULT '0',
search tinyint(1) NOT NULL DEFAULT '0',
displayorder tinyint(3) NOT NULL DEFAULT '0',
subjectshow tinyint(1) NOT NULL DEFAULT '0',
UNIQUE KEY optionid (sortid,optionid),
KEY sortid (sortid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_forum_warning;
CREATE TABLE pre_forum_warning (
wid int(10) unsigned NOT NULL AUTO_INCREMENT,
pid int(10) unsigned NOT NULL,
operatorid mediumint(8) unsigned NOT NULL,
operator char(15) NOT NULL,
authorid mediumint(8) unsigned NOT NULL,
author char(15) NOT NULL,
dateline int(10) unsigned NOT NULL,
reason char(40) NOT NULL,
PRIMARY KEY (wid),
UNIQUE KEY pid (pid),
KEY authorid (authorid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_album;
CREATE TABLE pre_home_album (
albumid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
albumname varchar(50) NOT NULL DEFAULT '',
catid smallint(6) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
updatetime int(10) unsigned NOT NULL DEFAULT '0',
picnum smallint(6) unsigned NOT NULL DEFAULT '0',
pic varchar(255) NOT NULL DEFAULT '',
picflag tinyint(1) NOT NULL DEFAULT '0',
friend tinyint(1) NOT NULL DEFAULT '0',
`password` varchar(10) NOT NULL DEFAULT '',
target_ids text NOT NULL,
favtimes mediumint(8) unsigned NOT NULL,
sharetimes mediumint(8) unsigned NOT NULL,
depict text NOT NULL,
PRIMARY KEY (albumid),
KEY uid (uid,updatetime),
KEY updatetime (updatetime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_album_category;
CREATE TABLE pre_home_album_category (
catid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
upid mediumint(8) unsigned NOT NULL DEFAULT '0',
catname varchar(255) NOT NULL DEFAULT '',
num mediumint(8) unsigned NOT NULL DEFAULT '0',
displayorder smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (catid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_appcreditlog;
CREATE TABLE pre_home_appcreditlog (
logid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
appid mediumint(8) unsigned NOT NULL DEFAULT '0',
appname varchar(60) NOT NULL DEFAULT '',
`type` tinyint(1) NOT NULL DEFAULT '0',
credit mediumint(8) unsigned NOT NULL DEFAULT '0',
note text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (logid),
KEY uid (uid,dateline),
KEY appid (appid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_blacklist;
CREATE TABLE pre_home_blacklist (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
buid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,buid),
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_blog;
CREATE TABLE pre_home_blog (
blogid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username char(15) NOT NULL DEFAULT '',
`subject` char(80) NOT NULL DEFAULT '',
classid smallint(6) unsigned NOT NULL DEFAULT '0',
catid smallint(6) unsigned NOT NULL DEFAULT '0',
viewnum mediumint(8) unsigned NOT NULL DEFAULT '0',
replynum mediumint(8) unsigned NOT NULL DEFAULT '0',
hot mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
picflag tinyint(1) NOT NULL DEFAULT '0',
noreply tinyint(1) NOT NULL DEFAULT '0',
friend tinyint(1) NOT NULL DEFAULT '0',
`password` char(10) NOT NULL DEFAULT '',
favtimes mediumint(8) unsigned NOT NULL DEFAULT '0',
sharetimes mediumint(8) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
click1 smallint(6) unsigned NOT NULL DEFAULT '0',
click2 smallint(6) unsigned NOT NULL DEFAULT '0',
click3 smallint(6) unsigned NOT NULL DEFAULT '0',
click4 smallint(6) unsigned NOT NULL DEFAULT '0',
click5 smallint(6) unsigned NOT NULL DEFAULT '0',
click6 smallint(6) unsigned NOT NULL DEFAULT '0',
click7 smallint(6) unsigned NOT NULL DEFAULT '0',
click8 smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (blogid),
KEY uid (uid,dateline),
KEY hot (hot),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_blog_category;
CREATE TABLE pre_home_blog_category (
catid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
upid mediumint(8) unsigned NOT NULL DEFAULT '0',
catname varchar(255) NOT NULL DEFAULT '',
num mediumint(8) unsigned NOT NULL DEFAULT '0',
displayorder smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (catid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_blog_moderate;
CREATE TABLE pre_home_blog_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `status` (`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_blogfield;
CREATE TABLE pre_home_blogfield (
blogid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
pic varchar(255) NOT NULL DEFAULT '',
tag varchar(255) NOT NULL DEFAULT '',
message mediumtext NOT NULL,
postip varchar(255) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
related text NOT NULL,
relatedtime int(10) unsigned NOT NULL DEFAULT '0',
target_ids text NOT NULL,
hotuser text NOT NULL,
magiccolor tinyint(6) NOT NULL DEFAULT '0',
magicpaper tinyint(6) NOT NULL DEFAULT '0',
pushedaid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (blogid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_class;
CREATE TABLE pre_home_class (
classid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
classname char(40) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (classid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_click;
CREATE TABLE pre_home_click (
clickid smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`name` char(50) NOT NULL DEFAULT '',
icon char(100) NOT NULL DEFAULT '',
idtype char(15) NOT NULL DEFAULT '',
available tinyint(1) unsigned NOT NULL DEFAULT '0',
displayorder tinyint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (clickid),
KEY idtype (idtype,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_clickuser;
CREATE TABLE pre_home_clickuser (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
id mediumint(8) unsigned NOT NULL DEFAULT '0',
idtype varchar(15) NOT NULL DEFAULT '',
clickid smallint(6) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
KEY id (id,idtype,dateline),
KEY uid (uid,idtype,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_comment;
CREATE TABLE pre_home_comment (
cid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
id mediumint(8) unsigned NOT NULL DEFAULT '0',
idtype varchar(20) NOT NULL DEFAULT '',
authorid mediumint(8) unsigned NOT NULL DEFAULT '0',
author varchar(15) NOT NULL DEFAULT '',
ip varchar(20) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
message text NOT NULL,
magicflicker tinyint(1) NOT NULL DEFAULT '0',
`status` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (cid),
KEY authorid (authorid,idtype),
KEY id (id,idtype,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_comment_moderate;
CREATE TABLE pre_home_comment_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
idtype varchar(15) NOT NULL DEFAULT '',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY idtype (idtype,`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_docomment;
CREATE TABLE pre_home_docomment (
id int(10) unsigned NOT NULL AUTO_INCREMENT,
upid int(10) unsigned NOT NULL DEFAULT '0',
doid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
message text NOT NULL,
ip varchar(20) NOT NULL DEFAULT '',
grade smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY doid (doid,dateline),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_doing;
CREATE TABLE pre_home_doing (
doid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
`from` varchar(20) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
message text NOT NULL,
ip varchar(20) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
replynum int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (doid),
KEY uid (uid,dateline),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_doing_moderate;
CREATE TABLE pre_home_doing_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `status` (`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_favorite;
CREATE TABLE pre_home_favorite (
favid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
id mediumint(8) unsigned NOT NULL DEFAULT '0',
idtype varchar(255) NOT NULL DEFAULT '',
spaceuid mediumint(8) unsigned NOT NULL DEFAULT '0',
title varchar(255) NOT NULL DEFAULT '',
description text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (favid),
KEY idtype (id,idtype),
KEY uid (uid,idtype,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_feed;
CREATE TABLE pre_home_feed (
feedid int(10) unsigned NOT NULL AUTO_INCREMENT,
appid smallint(6) unsigned NOT NULL DEFAULT '0',
icon varchar(30) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
friend tinyint(1) NOT NULL DEFAULT '0',
hash_template varchar(32) NOT NULL DEFAULT '',
hash_data varchar(32) NOT NULL DEFAULT '',
title_template text NOT NULL,
title_data text NOT NULL,
body_template text NOT NULL,
body_data text NOT NULL,
body_general text NOT NULL,
image_1 varchar(255) NOT NULL DEFAULT '',
image_1_link varchar(255) NOT NULL DEFAULT '',
image_2 varchar(255) NOT NULL DEFAULT '',
image_2_link varchar(255) NOT NULL DEFAULT '',
image_3 varchar(255) NOT NULL DEFAULT '',
image_3_link varchar(255) NOT NULL DEFAULT '',
image_4 varchar(255) NOT NULL DEFAULT '',
image_4_link varchar(255) NOT NULL DEFAULT '',
target_ids text NOT NULL,
id mediumint(8) unsigned NOT NULL DEFAULT '0',
idtype varchar(15) NOT NULL DEFAULT '',
hot mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (feedid),
KEY uid (uid,dateline),
KEY dateline (dateline),
KEY hot (hot),
KEY id (id,idtype)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_feed_app;
CREATE TABLE pre_home_feed_app (
feedid int(10) unsigned NOT NULL AUTO_INCREMENT,
appid smallint(6) unsigned NOT NULL DEFAULT '0',
icon varchar(30) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
friend tinyint(1) NOT NULL DEFAULT '0',
hash_template varchar(32) NOT NULL DEFAULT '',
hash_data varchar(32) NOT NULL DEFAULT '',
title_template text NOT NULL,
title_data text NOT NULL,
body_template text NOT NULL,
body_data text NOT NULL,
body_general text NOT NULL,
image_1 varchar(255) NOT NULL DEFAULT '',
image_1_link varchar(255) NOT NULL DEFAULT '',
image_2 varchar(255) NOT NULL DEFAULT '',
image_2_link varchar(255) NOT NULL DEFAULT '',
image_3 varchar(255) NOT NULL DEFAULT '',
image_3_link varchar(255) NOT NULL DEFAULT '',
image_4 varchar(255) NOT NULL DEFAULT '',
image_4_link varchar(255) NOT NULL DEFAULT '',
target_ids text NOT NULL,
PRIMARY KEY (feedid),
KEY uid (uid,dateline),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_follow;
CREATE TABLE pre_home_follow (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username char(15) NOT NULL DEFAULT '',
followuid mediumint(8) unsigned NOT NULL DEFAULT '0',
fusername char(15) NOT NULL DEFAULT '',
bkname varchar(255) NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '0',
mutual tinyint(1) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,followuid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_follow_feed;
CREATE TABLE pre_home_follow_feed (
feedid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
note text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (feedid),
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_follow_feed_archiver;
CREATE TABLE pre_home_follow_feed_archiver (
feedid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
note text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (feedid),
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_friend;
CREATE TABLE pre_home_friend (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
fuid mediumint(8) unsigned NOT NULL DEFAULT '0',
fusername varchar(15) NOT NULL DEFAULT '',
gid smallint(6) unsigned NOT NULL DEFAULT '0',
num mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
note varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (uid,fuid),
KEY fuid (fuid),
KEY uid (uid,num,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_friend_request;
CREATE TABLE pre_home_friend_request (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
fuid mediumint(8) unsigned NOT NULL DEFAULT '0',
fusername char(15) NOT NULL DEFAULT '',
gid smallint(6) unsigned NOT NULL DEFAULT '0',
note char(60) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,fuid),
KEY fuid (fuid),
KEY dateline (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_friendlog;
CREATE TABLE pre_home_friendlog (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
fuid mediumint(8) unsigned NOT NULL DEFAULT '0',
`action` varchar(10) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,fuid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_notification;
CREATE TABLE pre_home_notification (
id mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
`type` varchar(20) NOT NULL DEFAULT '',
`new` tinyint(1) NOT NULL DEFAULT '0',
authorid mediumint(8) unsigned NOT NULL DEFAULT '0',
author varchar(15) NOT NULL DEFAULT '',
note text NOT NULL,
dateline int(10) unsigned NOT NULL DEFAULT '0',
from_id mediumint(8) unsigned NOT NULL DEFAULT '0',
from_idtype varchar(20) NOT NULL DEFAULT '',
from_num mediumint(8) unsigned NOT NULL DEFAULT '0',
category tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY uid (uid,`new`),
KEY category (uid,category,dateline),
KEY by_type (uid,`type`,dateline),
KEY from_id (from_id,from_idtype)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_pic;
CREATE TABLE pre_home_pic (
picid mediumint(8) NOT NULL AUTO_INCREMENT,
albumid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
postip varchar(255) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
title varchar(255) NOT NULL DEFAULT '',
`type` varchar(255) NOT NULL DEFAULT '',
size int(10) unsigned NOT NULL DEFAULT '0',
filepath varchar(255) NOT NULL DEFAULT '',
thumb tinyint(1) NOT NULL DEFAULT '0',
remote tinyint(1) NOT NULL DEFAULT '0',
hot mediumint(8) unsigned NOT NULL DEFAULT '0',
sharetimes mediumint(8) unsigned NOT NULL DEFAULT '0',
click1 smallint(6) unsigned NOT NULL DEFAULT '0',
click2 smallint(6) unsigned NOT NULL DEFAULT '0',
click3 smallint(6) unsigned NOT NULL DEFAULT '0',
click4 smallint(6) unsigned NOT NULL DEFAULT '0',
click5 smallint(6) unsigned NOT NULL DEFAULT '0',
click6 smallint(6) unsigned NOT NULL DEFAULT '0',
click7 smallint(6) unsigned NOT NULL DEFAULT '0',
click8 smallint(6) unsigned NOT NULL DEFAULT '0',
magicframe tinyint(6) NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (picid),
KEY uid (uid),
KEY albumid (albumid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_pic_moderate;
CREATE TABLE pre_home_pic_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `status` (`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_picfield;
CREATE TABLE pre_home_picfield (
picid mediumint(8) unsigned NOT NULL DEFAULT '0',
hotuser text NOT NULL,
PRIMARY KEY (picid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_poke;
CREATE TABLE pre_home_poke (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
fromuid mediumint(8) unsigned NOT NULL DEFAULT '0',
fromusername varchar(15) NOT NULL DEFAULT '',
note varchar(255) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
iconid smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,fromuid),
KEY uid (uid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_pokearchive;
CREATE TABLE pre_home_pokearchive (
pid mediumint(8) NOT NULL AUTO_INCREMENT,
pokeuid int(10) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
fromuid mediumint(8) unsigned NOT NULL DEFAULT '0',
note varchar(255) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
iconid smallint(6) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (pid),
KEY pokeuid (pokeuid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_share;
CREATE TABLE pre_home_share (
sid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
itemid mediumint(8) unsigned NOT NULL,
`type` varchar(30) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
fromuid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
title_template text NOT NULL,
body_template text NOT NULL,
body_data text NOT NULL,
body_general text NOT NULL,
image varchar(255) NOT NULL DEFAULT '',
image_link varchar(255) NOT NULL DEFAULT '',
hot mediumint(8) unsigned NOT NULL DEFAULT '0',
hotuser text NOT NULL,
`status` tinyint(1) NOT NULL,
PRIMARY KEY (sid),
KEY uid (uid,dateline),
KEY hot (hot),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_share_moderate;
CREATE TABLE pre_home_share_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `status` (`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_show;
CREATE TABLE pre_home_show (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
unitprice int(10) unsigned NOT NULL DEFAULT '1',
credit int(10) unsigned NOT NULL DEFAULT '0',
note varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (uid),
KEY unitprice (unitprice),
KEY credit (credit)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_specialuser;
CREATE TABLE pre_home_specialuser (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
dateline int(10) NOT NULL DEFAULT '0',
reason text NOT NULL,
opuid mediumint(8) unsigned NOT NULL DEFAULT '0',
opusername varchar(15) NOT NULL DEFAULT '',
displayorder mediumint(8) unsigned NOT NULL DEFAULT '0',
KEY uid (uid,`status`),
KEY displayorder (`status`,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_userapp;
CREATE TABLE pre_home_userapp (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
appid mediumint(8) unsigned NOT NULL DEFAULT '0',
appname varchar(60) NOT NULL DEFAULT '',
privacy tinyint(1) NOT NULL DEFAULT '0',
allowsidenav tinyint(1) NOT NULL DEFAULT '0',
allowfeed tinyint(1) NOT NULL DEFAULT '0',
allowprofilelink tinyint(1) NOT NULL DEFAULT '0',
narrow tinyint(1) NOT NULL DEFAULT '0',
menuorder smallint(6) NOT NULL DEFAULT '0',
displayorder smallint(6) NOT NULL DEFAULT '0',
KEY uid (uid,appid),
KEY menuorder (uid,menuorder),
KEY displayorder (uid,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_userappfield;
CREATE TABLE pre_home_userappfield (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
appid mediumint(8) unsigned NOT NULL DEFAULT '0',
profilelink text NOT NULL,
myml text NOT NULL,
KEY uid (uid,appid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_home_visitor;
CREATE TABLE pre_home_visitor (
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
vuid mediumint(8) unsigned NOT NULL DEFAULT '0',
vusername char(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (uid,vuid),
KEY vuid (vuid),
KEY dateline (dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_mobile_setting;
CREATE TABLE pre_mobile_setting (
skey varchar(255) NOT NULL DEFAULT '',
svalue text NOT NULL,
PRIMARY KEY (skey)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_article_content;
CREATE TABLE pre_portal_article_content (
cid int(10) unsigned NOT NULL AUTO_INCREMENT,
aid mediumint(8) unsigned NOT NULL DEFAULT '0',
id int(10) unsigned NOT NULL DEFAULT '0',
idtype varchar(255) NOT NULL DEFAULT '',
title varchar(255) NOT NULL DEFAULT '',
content text NOT NULL,
pageorder smallint(6) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (cid),
KEY aid (aid,pageorder),
KEY pageorder (pageorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_article_count;
CREATE TABLE pre_portal_article_count (
aid mediumint(8) unsigned NOT NULL DEFAULT '0',
catid mediumint(8) unsigned NOT NULL DEFAULT '0',
viewnum mediumint(8) unsigned NOT NULL DEFAULT '0',
commentnum mediumint(8) unsigned NOT NULL DEFAULT '0',
favtimes mediumint(8) unsigned NOT NULL DEFAULT '0',
sharetimes mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (aid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_article_moderate;
CREATE TABLE pre_portal_article_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY `status` (`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_article_related;
CREATE TABLE pre_portal_article_related (
aid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
raid mediumint(8) unsigned NOT NULL DEFAULT '0',
displayorder mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (aid,raid),
KEY aid (aid,displayorder)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_article_title;
CREATE TABLE pre_portal_article_title (
aid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
catid mediumint(8) unsigned NOT NULL DEFAULT '0',
bid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(255) NOT NULL DEFAULT '',
title varchar(255) NOT NULL DEFAULT '',
highlight varchar(255) NOT NULL DEFAULT '',
author varchar(255) NOT NULL DEFAULT '',
`from` varchar(255) NOT NULL DEFAULT '',
fromurl varchar(255) NOT NULL DEFAULT '',
url varchar(255) NOT NULL DEFAULT '',
summary varchar(255) NOT NULL DEFAULT '',
pic varchar(255) NOT NULL DEFAULT '',
thumb tinyint(1) NOT NULL DEFAULT '0',
remote tinyint(1) NOT NULL DEFAULT '0',
id int(10) unsigned NOT NULL DEFAULT '0',
idtype varchar(255) NOT NULL DEFAULT '',
contents smallint(6) NOT NULL DEFAULT '0',
allowcomment tinyint(1) NOT NULL DEFAULT '0',
owncomment tinyint(1) NOT NULL DEFAULT '0',
click1 smallint(6) unsigned NOT NULL DEFAULT '0',
click2 smallint(6) unsigned NOT NULL DEFAULT '0',
click3 smallint(6) unsigned NOT NULL DEFAULT '0',
click4 smallint(6) unsigned NOT NULL DEFAULT '0',
click5 smallint(6) unsigned NOT NULL DEFAULT '0',
click6 smallint(6) unsigned NOT NULL DEFAULT '0',
click7 smallint(6) unsigned NOT NULL DEFAULT '0',
click8 smallint(6) unsigned NOT NULL DEFAULT '0',
tag tinyint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
showinnernav tinyint(1) unsigned NOT NULL DEFAULT '0',
preaid mediumint(8) unsigned NOT NULL,
nextaid mediumint(8) unsigned NOT NULL,
htmlmade tinyint(1) unsigned NOT NULL DEFAULT '0',
htmlname varchar(255) NOT NULL DEFAULT '',
htmldir varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (aid),
KEY catid (catid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_article_trash;
CREATE TABLE pre_portal_article_trash (
aid mediumint(8) unsigned NOT NULL DEFAULT '0',
content text NOT NULL,
PRIMARY KEY (aid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_attachment;
CREATE TABLE pre_portal_attachment (
attachid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
filetype varchar(255) NOT NULL DEFAULT '',
filesize int(10) unsigned NOT NULL DEFAULT '0',
attachment varchar(255) NOT NULL DEFAULT '',
isimage tinyint(1) NOT NULL DEFAULT '0',
thumb tinyint(1) unsigned NOT NULL DEFAULT '0',
remote tinyint(1) unsigned NOT NULL DEFAULT '0',
aid mediumint(8) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (attachid),
KEY aid (aid,attachid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_category;
CREATE TABLE pre_portal_category (
catid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
upid mediumint(8) unsigned NOT NULL DEFAULT '0',
catname varchar(255) NOT NULL DEFAULT '',
articles mediumint(8) unsigned NOT NULL DEFAULT '0',
allowcomment tinyint(1) NOT NULL DEFAULT '1',
displayorder smallint(6) NOT NULL DEFAULT '0',
notinheritedarticle tinyint(1) NOT NULL DEFAULT '0',
notinheritedblock tinyint(1) NOT NULL DEFAULT '0',
domain varchar(255) NOT NULL DEFAULT '',
url varchar(255) NOT NULL DEFAULT '',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(255) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
closed tinyint(1) NOT NULL DEFAULT '0',
shownav tinyint(1) NOT NULL DEFAULT '0',
description text NOT NULL,
seotitle text NOT NULL,
keyword text NOT NULL,
primaltplname varchar(255) NOT NULL DEFAULT '',
articleprimaltplname varchar(255) NOT NULL DEFAULT '',
disallowpublish tinyint(1) NOT NULL DEFAULT '0',
foldername varchar(255) NOT NULL DEFAULT '',
notshowarticlesummay varchar(255) NOT NULL DEFAULT '',
perpage smallint(6) NOT NULL DEFAULT '0',
maxpages smallint(6) NOT NULL DEFAULT '0',
noantitheft tinyint(1) NOT NULL DEFAULT '0',
lastpublish int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (catid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_category_permission;
CREATE TABLE pre_portal_category_permission (
catid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
allowpublish tinyint(1) NOT NULL DEFAULT '0',
allowmanage tinyint(1) NOT NULL DEFAULT '0',
inheritedcatid mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (catid,uid),
KEY uid (uid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_comment;
CREATE TABLE pre_portal_comment (
cid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(255) NOT NULL DEFAULT '',
id mediumint(8) unsigned NOT NULL DEFAULT '0',
idtype varchar(20) NOT NULL DEFAULT '',
postip varchar(255) NOT NULL DEFAULT '',
`port` smallint(6) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
message text NOT NULL,
PRIMARY KEY (cid),
KEY idtype (id,idtype,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_comment_moderate;
CREATE TABLE pre_portal_comment_moderate (
id int(10) unsigned NOT NULL DEFAULT '0',
idtype varchar(15) NOT NULL DEFAULT '',
`status` tinyint(3) NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY idtype (idtype,`status`,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_rsscache;
CREATE TABLE pre_portal_rsscache (
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
catid mediumint(8) unsigned NOT NULL DEFAULT '0',
aid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
catname char(50) NOT NULL DEFAULT '',
author char(15) NOT NULL DEFAULT '',
`subject` char(80) NOT NULL DEFAULT '',
description char(255) NOT NULL DEFAULT '',
UNIQUE KEY aid (aid),
KEY catid (catid,dateline)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_topic;
CREATE TABLE pre_portal_topic (
topicid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
title varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
domain varchar(255) NOT NULL DEFAULT '',
summary text NOT NULL,
keyword text NOT NULL,
cover varchar(255) NOT NULL DEFAULT '',
picflag tinyint(1) NOT NULL DEFAULT '0',
primaltplname varchar(255) NOT NULL DEFAULT '',
useheader tinyint(1) NOT NULL DEFAULT '0',
usefooter tinyint(1) NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(255) NOT NULL DEFAULT '',
viewnum mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
closed tinyint(1) NOT NULL DEFAULT '0',
allowcomment tinyint(1) NOT NULL DEFAULT '0',
commentnum mediumint(8) unsigned NOT NULL DEFAULT '0',
htmlmade tinyint(1) unsigned NOT NULL DEFAULT '0',
htmldir varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (topicid),
KEY `name` (`name`)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_portal_topic_pic;
CREATE TABLE pre_portal_topic_pic (
picid mediumint(8) NOT NULL AUTO_INCREMENT,
topicid mediumint(8) unsigned NOT NULL DEFAULT '0',
uid mediumint(8) unsigned NOT NULL DEFAULT '0',
username varchar(15) NOT NULL DEFAULT '',
dateline int(10) unsigned NOT NULL DEFAULT '0',
filename varchar(255) NOT NULL DEFAULT '',
title varchar(255) NOT NULL DEFAULT '',
size int(10) unsigned NOT NULL DEFAULT '0',
filepath varchar(255) NOT NULL DEFAULT '',
thumb tinyint(1) NOT NULL DEFAULT '0',
remote tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (picid),
KEY topicid (topicid)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_security_evilpost;
CREATE TABLE pre_security_evilpost (
pid int(10) unsigned NOT NULL,
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
`type` tinyint(1) NOT NULL DEFAULT '0',
evilcount int(10) NOT NULL DEFAULT '0',
eviltype mediumint(8) unsigned NOT NULL DEFAULT '0',
createtime int(10) unsigned NOT NULL DEFAULT '0',
operateresult tinyint(1) unsigned NOT NULL DEFAULT '0',
isreported tinyint(1) NOT NULL DEFAULT '0',
censorword char(50) NOT NULL,
PRIMARY KEY (pid),
KEY `type` (tid,`type`),
KEY operateresult (operateresult,createtime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_security_eviluser;
CREATE TABLE pre_security_eviluser (
uid int(10) unsigned NOT NULL,
evilcount int(10) NOT NULL DEFAULT '0',
eviltype mediumint(8) unsigned NOT NULL DEFAULT '0',
createtime int(10) unsigned NOT NULL DEFAULT '0',
operateresult tinyint(1) unsigned NOT NULL DEFAULT '0',
isreported tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (uid),
KEY operateresult (operateresult,createtime)
) TYPE=MyISAM;
DROP TABLE IF EXISTS pre_security_failedlog;
CREATE TABLE pre_security_failedlog (
id int(11) NOT NULL AUTO_INCREMENT,
reporttype char(20) NOT NULL,
tid int(10) unsigned NOT NULL DEFAULT '0',
pid int(10) unsigned NOT NULL DEFAULT '0',
uid int(10) unsigned NOT NULL DEFAULT '0',
failcount int(10) unsigned NOT NULL DEFAULT '0',
createtime int(10) unsigned NOT NULL DEFAULT '0',
posttime int(10) unsigned NOT NULL DEFAULT '0',
delreason char(255) NOT NULL,
scheduletime int(10) unsigned NOT NULL DEFAULT '0',
lastfailtime int(10) unsigned NOT NULL DEFAULT '0',
extra1 int(10) unsigned NOT NULL,
extra2 char(255) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY pid (pid),
KEY uid (uid)
) TYPE=MyISAM;