You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
494 B
18 lines
494 B
admin库:
|
|
ALTER TABLE `dxhy_admin`.`a_dangban`
|
|
MODIFY COLUMN `id` bigint(30) NOT NULL AUTO_INCREMENT FIRST;
|
|
|
|
ALTER TABLE `dxhy_admin`.`a_dangban`
|
|
MODIFY COLUMN `id` bigint(30) NOT NULL FIRST;
|
|
|
|
dxhy_tertiary库:
|
|
|
|
t_dx_lq开头的表的主键自增都去掉
|
|
|
|
ALTER TABLE `dxhy_tertiary`.`t_dx_lq_download_file`
|
|
MODIFY COLUMN `id` bigint(30) NOT NULL FIRST;
|
|
|
|
索引:
|
|
优化认证查询界面查询
|
|
ALTER TABLE `dxhy_tertiary`.`t_dx_record_invoice`
|
|
ADD INDEX `rzh_date`(`rzh_date`) USING BTREE; |