@@ -1137,43 +1137,43 @@ export const chiiTagFields = mysqlTable('chii_tag_neue_fields', {
1137
1137
export const chiiTimeline = mysqlTable (
1138
1138
'chii_timeline' ,
1139
1139
{
1140
- tmlId : int ( 'tml_id' ) . autoincrement ( ) . notNull ( ) ,
1141
- tmlUid : mediumint ( 'tml_uid' ) . notNull ( ) ,
1142
- tmlCat : smallint ( 'tml_cat' ) . notNull ( ) ,
1143
- tmlType : smallint ( 'tml_type' ) . notNull ( ) ,
1144
- tmlRelated : char ( 'tml_related' , { length : 255 } ) . default ( '0' ) . notNull ( ) ,
1145
- tmlMemo : mediumtext ( 'tml_memo' ) . notNull ( ) ,
1146
- tmlImg : mediumtext ( 'tml_img' ) . notNull ( ) ,
1147
- tmlBatch : tinyint ( 'tml_batch' ) . notNull ( ) ,
1148
- tmlSource : tinyint ( 'tml_source' ) . default ( 0 ) . notNull ( ) ,
1149
- tmlReplies : mediumint ( 'tml_replies' ) . notNull ( ) ,
1150
- tmlDateline : int ( 'tml_dateline' ) . default ( 0 ) . notNull ( ) ,
1140
+ id : int ( 'tml_id' ) . autoincrement ( ) . notNull ( ) ,
1141
+ uid : mediumint ( 'tml_uid' ) . notNull ( ) ,
1142
+ cat : smallint ( 'tml_cat' ) . notNull ( ) ,
1143
+ type : smallint ( 'tml_type' ) . notNull ( ) ,
1144
+ related : char ( 'tml_related' , { length : 255 } ) . default ( '0' ) . notNull ( ) ,
1145
+ memo : mediumtext ( 'tml_memo' ) . notNull ( ) ,
1146
+ img : mediumtext ( 'tml_img' ) . notNull ( ) ,
1147
+ batch : customBoolean ( 'tml_batch' ) . notNull ( ) ,
1148
+ source : tinyint ( 'tml_source' ) . default ( 0 ) . notNull ( ) ,
1149
+ replies : mediumint ( 'tml_replies' ) . notNull ( ) ,
1150
+ createdAt : int ( 'tml_dateline' ) . default ( 0 ) . notNull ( ) ,
1151
1151
} ,
1152
1152
( table ) => {
1153
1153
return {
1154
- tmlUid : index ( 'tml_uid' ) . on ( table . tmlUid ) ,
1155
- tmlCat : index ( 'tml_cat' ) . on ( table . tmlCat ) ,
1156
- tmlBatch : index ( 'tml_batch' ) . on ( table . tmlBatch ) ,
1157
- queryTmlCat : index ( 'query_tml_cat' ) . on ( table . tmlUid , table . tmlCat ) ,
1154
+ tmlUid : index ( 'tml_uid' ) . on ( table . uid ) ,
1155
+ tmlCat : index ( 'tml_cat' ) . on ( table . cat ) ,
1156
+ tmlBatch : index ( 'tml_batch' ) . on ( table . batch ) ,
1157
+ queryTmlCat : index ( 'query_tml_cat' ) . on ( table . uid , table . cat ) ,
1158
1158
} ;
1159
1159
} ,
1160
1160
) ;
1161
1161
1162
1162
export const chiiTimelineComments = mysqlTable (
1163
1163
'chii_timeline_comments' ,
1164
1164
{
1165
- tmlPstId : mediumint ( 'tml_pst_id' ) . autoincrement ( ) . notNull ( ) ,
1166
- tmlPstMid : int ( 'tml_pst_mid' ) . notNull ( ) ,
1167
- tmlPstUid : mediumint ( 'tml_pst_uid' ) . notNull ( ) ,
1168
- tmlPstRelated : mediumint ( 'tml_pst_related' ) . notNull ( ) ,
1169
- tmlPstDateline : int ( 'tml_pst_dateline' ) . notNull ( ) ,
1170
- tmlPstContent : mediumtext ( 'tml_pst_content' ) . notNull ( ) ,
1165
+ id : mediumint ( 'tml_pst_id' ) . autoincrement ( ) . notNull ( ) ,
1166
+ mid : int ( 'tml_pst_mid' ) . notNull ( ) ,
1167
+ uid : mediumint ( 'tml_pst_uid' ) . notNull ( ) ,
1168
+ related : mediumint ( 'tml_pst_related' ) . notNull ( ) ,
1169
+ createdAt : int ( 'tml_pst_dateline' ) . notNull ( ) ,
1170
+ content : mediumtext ( 'tml_pst_content' ) . notNull ( ) ,
1171
1171
} ,
1172
1172
( table ) => {
1173
1173
return {
1174
- cmtTmlId : index ( 'cmt_tml_id' ) . on ( table . tmlPstMid ) ,
1175
- tmlPstRelated : index ( 'tml_pst_related' ) . on ( table . tmlPstRelated ) ,
1176
- tmlPstUid : index ( 'tml_pst_uid' ) . on ( table . tmlPstUid ) ,
1174
+ cmtTmlId : index ( 'cmt_tml_id' ) . on ( table . mid ) ,
1175
+ tmlPstRelated : index ( 'tml_pst_related' ) . on ( table . related ) ,
1176
+ tmlPstUid : index ( 'tml_pst_uid' ) . on ( table . uid ) ,
1177
1177
} ;
1178
1178
} ,
1179
1179
) ;
0 commit comments