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

18 行
361B

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