Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

18 lines
346B

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