Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

22 lines
502B

  1. <?php
  2. use yii\db\Schema;
  3. use yii\db\Migration;
  4. class m150403_141443_add_champs_user extends Migration
  5. {
  6. public function up()
  7. {
  8. $this->addColumn('user', 'nom', Schema::TYPE_STRING) ;
  9. $this->addColumn('user', 'prenom', Schema::TYPE_STRING) ;
  10. $this->addColumn('user', 'telephone', Schema::TYPE_STRING) ;
  11. }
  12. public function down()
  13. {
  14. $this->dropColumn('user', 'nom') ;
  15. $this->dropColumn('user', 'prenom') ;
  16. $this->dropColumn('user', 'telephone') ;
  17. }
  18. }