選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

18 行
349B

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