完成将商品标签加入安装流程中,可以方便的测试表格选择器;

This commit is contained in:
2022-07-09 14:28:06 +08:00
parent b6591ebaf5
commit 7a8c75de45
6 changed files with 810 additions and 512 deletions

View File

@@ -32,6 +32,7 @@ class MallGoods extends Migrator
->setComment('商品列表')
->addColumn(Column::bigInteger('cate_id')->setUnsigned()->setComment('分类ID'))
->addColumn(Column::char('title', 20)->setDefault('')->setComment('商品名称'))
->addColumn(Column::char('tag', 100)->setDefault('')->setComment('商品标签'))
->addColumn(Column::char('logo')->setComment('商品logo {image}'))
->addColumn(Column::text('images')->setComment('商品图片 {images}'))
->addColumn(Column::text('describe')->setComment('商品描述 {editor}'))

View File

@@ -0,0 +1,39 @@
<?php
use think\migration\Migrator;
use think\migration\db\Column;
class MallTag extends Migrator
{
/**
* Change Method.
*
* Write your reversible migrations using this method.
*
* More information on writing migrations is available here:
* http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
*
* The following commands can be used in this method and Phinx will
* automatically reverse them when rolling back:
*
* createTable
* renameTable
* addColumn
* renameColumn
* addIndex
* addForeignKey
*
* Remember to call "create()" or "update()" and NOT "save()" when working
* with the Table class.
*/
public function change()
{
$table = $this->table('mall_tag')
->setComment('商品标签')
->addColumn(Column::char('title', 20)->setDefault('')->setComment('商品名称'))
->addColumn(Column::integer('create_time')->setLimit(11)->setUnsigned()->setDefault(0)->setComment('创建时间'))
->addColumn(Column::integer('update_time')->setLimit(11)->setUnsigned()->setDefault(0))
->addColumn(Column::integer('delete_time')->setLimit(11)->setUnsigned()->setDefault(0))
->create();
}
}