您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

m161020_072119_champs_boulangerie.php 705B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. use yii\db\Schema;
  3. use yii\db\Migration;
  4. class m161020_072119_champs_boulangerie extends Migration
  5. {
  6. public function up()
  7. {
  8. //$this->addColumn('user', 'logo', Schema::TYPE_STRING) ;
  9. //$this->addColumn('user', 'photo', Schema::TYPE_STRING) ;
  10. //$this->addColumn('user', 'description', Schema::TYPE_TEXT) ;
  11. }
  12. public function down()
  13. {
  14. //$this->dropColumn('user', 'logo');
  15. //$this->dropColumn('user', 'photo');
  16. //$this->dropColumn('user', 'description');
  17. }
  18. /*
  19. // Use safeUp/safeDown to run migration code within a transaction
  20. public function safeUp()
  21. {
  22. }
  23. public function safeDown()
  24. {
  25. }
  26. */
  27. }