20220606012605_maintenancemapper_add_feild.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. use think\migration\Migrator;
  12. use think\migration\db\Column;
  13. class MaintenancemapperAddFeild extends Migrator
  14. {
  15. /**
  16. * Change Method.
  17. *
  18. * Write your reversible migrations using this method.
  19. *
  20. * More information on writing migrations is available here:
  21. * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
  22. *
  23. * The following commands can be used in this method and Phinx will
  24. * automatically reverse them when rolling back:
  25. *
  26. * createTable
  27. * renameTable
  28. * addColumn
  29. * renameColumn
  30. * addIndex
  31. * addForeignKey
  32. *
  33. * Remember to call "create()" or "update()" and NOT "save()" when working
  34. * with the Table class.
  35. */
  36. public function change()
  37. {
  38. if ($this->hasTable('maintenance_mapper')) {
  39. $table = $this->table('maintenance_mapper');
  40. $table ->addColumn('fan_model', 'string', ['limit' => 32,'null' => true,'signed' => true,'comment' => 'imei号',])
  41. ->update();
  42. }
  43. }
  44. }