12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- use think\migration\Migrator;
- use think\migration\db\Column;
- class CreateCustomerWisdomImg 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()
- {
- $this->table('customer_wisdom_img', ['comment' => '客户智慧屏图片关联表'])
- ->addColumn('root_id', 'integer', ['comment' => '店面id', 'default' => 0])
- ->addColumn('customer_id', 'integer', ['comment' => '客户id', 'default' => 0])
- ->addColumn('media_id', 'string', ['comment' => '媒体文件id', 'default' => ''])
- ->addColumn('img', 'string', ['comment' => '图片地址ID', 'default' => ''])
- ->addColumn('type', 'integer', ['comment' => '0实景图,1效果图', 'default' => 0])
- ->addColumn('addtime', 'timestamp', ['comment'=>'添加时间', 'default' => 'CURRENT_TIMESTAMP'])
- ->create();
- }
- }
|