|
- <?php
-
- use yii\db\Schema;
- use yii\db\Migration;
-
- class m150608_082455_add_champs_gestion_commandes extends Migration
- {
- public function up()
- {
- // nom/prénom de l'utilisateur (saisie commande à la volée)
- $this->addColumn('commande', 'username', Schema::TYPE_STRING) ;
- // quantité max
- $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') ;
- }
-
- /*
- // Use safeUp/safeDown to run migration code within a transaction
- public function safeUp()
- {
- }
-
- public function safeDown()
- {
- }
- */
- }
|