Logo white

Yarik / vitex

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • vitex
  • console
  • migrations
  • m161107_174947_add_project_preview_co...
  • Project preview add
    44986c1c
    Yarik authored
    2016-11-07 20:12:24 +0200  
    Browse Code ยป
m161107_174947_add_project_preview_column.php 328 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?php

use yii\db\Migration;

class m161107_174947_add_project_preview_column extends Migration
{
    public function up()
    {
        $this->addColumn('project_lang', 'description_preview', $this->text());
    }

    public function down()
    {
        $this->dropColumn('project_lang', 'description_preview');
    }
    
}