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.

17 lines
459B

  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\mysql\Schema;
  4. use common\models\Producer ;
  5. class m190522_091006_option_comportement_annulation_commande extends Migration {
  6. public function up() {
  7. $this->addColumn('producer', 'option_behavior_cancel_order', Schema::TYPE_STRING.' DEFAULT \''.Producer::BEHAVIOR_DELETE_ORDER_STATUS.'\'') ;
  8. }
  9. public function down() {
  10. $this->dropColumn('producer', 'option_behavior_cancel_order') ;
  11. }
  12. }