|
- <?php
-
-
-
- use yii\db\Schema;
- use yii\db\Migration;
-
- class m150608_082455_add_champs_gestion_commandes extends Migration
- {
- public function up()
- {
-
- $this->addColumn('commande', 'username', Schema::TYPE_STRING) ;
-
- $this->addColumn('produit', 'quantite_max', Schema::TYPE_INTEGER) ;
- $this->addColumn('production_produit', 'quantite_max', Schema::TYPE_INTEGER) ;
-
- }
-
- public function down()
- {
- $this->dropColumn('commande', 'username') ;
- $this->dropColumn('production_produit', 'quantite_max') ;
- }
-
-
-
- }
|