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.

27 lines
481B

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