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.

21 lines
614B

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