Add files via upload

This commit is contained in:
Last
2018-11-15 17:35:36 +08:00
committed by GitHub
parent c80e5180f9
commit d3add663a7
9 changed files with 324 additions and 0 deletions

5
z_ayou/install.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
//新建标签表 alter table tableName add newColumn varchar(8) comment '新添加的字段'
$sql="ALTER TABLE bbs_post ADD pa longtext, ADD pb longtext, ADD pc longtext, ADD pd longtext, ADD pe longtext, ADD pf longtext, ADD pg longtext, ADD ph longtext, ADD pi longtext, ADD pj longtext";
db_exec($sql);
?>