This commit is contained in:
make
2025-04-21 17:49:17 +08:00
parent 7ef217c1b9
commit 2337ab4f7d
942 changed files with 209166 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
use think\migration\Migrator;
use think\migration\db\Column;
class AddGgPaiXuColumOnGuangGaoTable extends Migrator
{
public function up()
{
// $Table = $this->table('guang_gao');
// $Table->addColumn('gg_sort', 'integer', ['after' => 'gg_tiao_zhuan_di_zhi'])->setComment("排序")->save();
}
public function down()
{
// $Table = $this->table('guang_gao');
// $Table->removeColumn('gg_sort')->save();
}
}