addColumn('commande_auto', 'id_point_vente', Schema::TYPE_INTEGER.' NOT NULL') ; $this->addColumn('commande', 'type', Schema::TYPE_STRING) ; } public function down() { $this->dropColumn('commande_auto', 'id_point_vente') ; $this->dropColumn('commande', 'type') ; } /* // Use safeUp/safeDown to run migration code within a transaction public function safeUp() { } public function safeDown() { } */ }