Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

20 lines
597B

  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\Schema;
  4. class m210318_095733_add_product_reference extends Migration
  5. {
  6. public function safeUp()
  7. {
  8. $this->addColumn('product', 'reference', Schema::TYPE_STRING . ' DEFAULT NULL') ;
  9. $this->addColumn('producer', 'option_export_display_product_reference', Schema::TYPE_BOOLEAN.' DEFAULT 0') ;
  10. }
  11. public function safeDown()
  12. {
  13. $this->dropColumn('product', 'reference') ;
  14. $this->dropColumn('producer', 'option_export_display_product_reference') ;
  15. }
  16. }