20220510063603_fan_add_field.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 FanAddField 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('fan')) {
  39. $table = $this->table('fan');
  40. $table->addColumn('name', 'string', ['limit' => 50,'null' => true,'signed' => true,'comment' => '风机名称',])
  41. ->addColumn('img', 'string', ['limit' => 255,'null' => true,'signed' => true,'comment' => '图片',])
  42. ->update();
  43. }
  44. }
  45. }