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
655B

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