You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

m170616_112800_add_champs_info_commande.php 355B

123456789101112131415161718
  1. <?php
  2. use yii\db\Migration;
  3. use yii\db\Schema;
  4. class m170616_112800_add_champs_info_commande extends Migration
  5. {
  6. public function up()
  7. {
  8. $this->addColumn('etablissement', 'infos_commande', Schema::TYPE_TEXT.' DEFAULT NULL') ;
  9. }
  10. public function down()
  11. {
  12. $this->dropColumn('etablissement', 'infos_commande') ;
  13. }
  14. }