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

m190220_073434_ajout_champs_point_vente_defaut.php 327B

123456789101112131415
  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\mysql\Schema;
  4. class m190220_073434_ajout_champs_point_vente_defaut extends Migration {
  5. public function up() {
  6. $this->addColumn('point_sale', 'default', Schema::TYPE_BOOLEAN) ;
  7. }
  8. public function down() {
  9. $this->dropColumn('point_sale', 'default') ;
  10. }
  11. }