No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

23 líneas
801B

  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\Schema;
  4. use common\models\Producer ;
  5. class m200601_073309_add_producer_options extends Migration
  6. {
  7. public function safeUp()
  8. {
  9. $this->addColumn('producer', 'behavior_home_point_sale_day_list', Schema::TYPE_STRING.' DEFAULT \''.Producer::BEHAVIOR_HOME_POINT_SALE_DAY_LIST_WEEK.'\'');
  10. $this->addColumn('producer', 'behavior_order_select_distribution', Schema::TYPE_STRING.' DEFAULT \''.Producer::BEHAVIOR_ORDER_SELECT_DISTRIBUTION_CALENDAR.'\'');
  11. }
  12. public function safeDown()
  13. {
  14. $this->dropColumn('producer', 'behavior_home_point_sale_day_list');
  15. $this->dropColumn('producer', 'behavior_order_select_distribution');
  16. return false;
  17. }
  18. }