You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
614B

  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\Schema;
  4. /**
  5. * Class m220919_084020_add_fields_export_evoliz
  6. */
  7. class m220919_084020_add_fields_export_evoliz extends Migration
  8. {
  9. /**
  10. * {@inheritdoc}
  11. */
  12. public function safeUp()
  13. {
  14. $this->addColumn('producer', 'option_export_evoliz', Schema::TYPE_BOOLEAN .' DEFAULT 0');
  15. $this->addColumn('user', 'evoliz_code', Schema::TYPE_STRING);
  16. }
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public function safeDown()
  21. {
  22. $this->dropColumn('producer', 'option_export_evoliz');
  23. $this->dropColumn('user', 'evoliz_code');
  24. }
  25. }