Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

m161221_101644_champs_point_vente_credit_pain.php 337B

1234567891011121314151617
  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\Schema;
  4. class m161221_101644_champs_point_vente_credit_pain extends Migration
  5. {
  6. public function up()
  7. {
  8. $this->addColumn('point_vente', 'credit_pain', Schema::TYPE_BOOLEAN) ;
  9. }
  10. public function down()
  11. {
  12. $this->dropColumn('point_vente', 'credit_pain') ;
  13. }
  14. }