|
- <?php
-
- use yii\db\Migration;
- use yii\db\Schema;
-
- class m180315_090156_add_champs_commande_paiement_auto extends Migration {
-
- public function up() {
- $this->addColumn('commande', 'paiement_automatique', Schema::TYPE_BOOLEAN.' DEFAULT 0') ;
- }
-
- public function down() {
- $this->dropColumn('commande', 'paiement_automatique') ;
- }
- }
|