Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

29 lines
647B

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