1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- use think\migration\Migrator;
- use think\migration\db\Column;
- use Phinx\Db\Adapter\MysqlAdapter;
- class SendConfigAddImei extends Migrator
- {
-
- public function change()
- {
- if ($this->hasTable('send_config_log')) {
- $table = $this->table('send_config_log');
- $table ->addColumn('imei', 'string', ['limit' => 20,'null' => true,'signed' => true,'comment' => 'IMEI',])
- ->update();
- }
- }
- }
|