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.

18 lines
336B

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