|
- <?php
-
- use yii\db\Migration;
- use yii\db\Schema;
-
- class m161221_101644_champs_point_vente_credit_pain extends Migration
- {
- public function up()
- {
- $this->addColumn('point_vente', 'credit_pain', Schema::TYPE_BOOLEAN) ;
- }
-
- public function down()
- {
- $this->dropColumn('point_vente', 'credit_pain') ;
- }
- }
|