20220506145038_flange.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. use think\migration\Migrator;
  3. use think\migration\db\Column;
  4. use Phinx\Db\Adapter\MysqlAdapter;
  5. class Flange extends Migrator
  6. {
  7. /**
  8. * Change Method.
  9. *
  10. * Write your reversible migrations using this method.
  11. *
  12. * More information on writing migrations is available here:
  13. * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
  14. *
  15. * The following commands can be used in this method and Phinx will
  16. * automatically reverse them when rolling back:
  17. *
  18. * createTable
  19. * renameTable
  20. * addColumn
  21. * renameColumn
  22. * addIndex
  23. * addForeignKey
  24. *
  25. * Remember to call "create()" or "update()" and NOT "save()" when working
  26. * with the Table class.
  27. */
  28. public function change()
  29. {
  30. $table = $this->table('flange', ['engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '法兰' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]);
  31. $table->addColumn('number', 'string', ['limit' => 50,'null' => false,'default' => '','signed' => true,'comment' => '编号',])
  32. ->addColumn('model', 'string', ['limit' => 50,'null' => false,'default' => '','signed' => true,'comment' => '型号',])
  33. ->addColumn('department_id', 'string', ['limit' => 11,'null' => true,'signed' => true,'comment' => '所属部门',])
  34. ->addColumn('name', 'string', ['limit' => 50,'null' => true,'signed' => true,'comment' => '名称',])
  35. ->addColumn('is_used', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => -1,'signed' => true,'comment' => '使用状态 1已使用 -1未使用 -2废弃',])
  36. ->addColumn('brand', 'string', ['limit' => 50,'null' => true,'signed' => true,'comment' => '品牌',])
  37. ->addColumn('supplier', 'string', ['limit' => 50,'null' => true,'signed' => true,'comment' => '供应商',])
  38. ->addColumn('out_date', 'date', ['null' => true,'signed' => true,'comment' => '出厂日期',])
  39. ->addColumn('remark', 'string', ['limit' => 255,'null' => true,'signed' => true,'comment' => '注释',])
  40. ->addColumn('torque', 'string', ['limit' => 10,'null' => true,'signed' => true,'comment' => '扭矩',])
  41. ->addColumn('stress', 'string', ['limit' => 10,'null' => true,'signed' => true,'comment' => '压力',])
  42. ->addColumn('fastening_scheme', 'string', ['limit' => 255,'null' => true,'signed' => true,'comment' => '紧固方案',])
  43. ->addColumn('fan_id', 'string', ['limit' => 11,'null' => true,'signed' => true,'comment' => '风机id',])
  44. ->addColumn('install_position', 'string', ['limit' => 20,'null' => true,'signed' => true,'comment' => '安装位置',])
  45. ->addColumn('fastening_information', 'string', ['limit' => 255,'null' => true,'signed' => true,'comment' => '紧固信息',])
  46. ->addColumn('maintenance_information', 'string', ['limit' => 255,'null' => true,'signed' => true,'comment' => '维护信息',])
  47. ->addColumn('creator_id', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建人ID',])
  48. ->addColumn('created_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '创建时间',])
  49. ->addColumn('updated_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '更新时间',])
  50. ->addColumn('deleted_at', 'integer', ['limit' => MysqlAdapter::INT_REGULAR,'null' => false,'default' => 0,'signed' => false,'comment' => '软删除',])
  51. ->addIndex(['torque'], ['name' => 'fulltext_torque','type' => 'fulltext'])
  52. ->create();
  53. }
  54. }