Logo white

Alexey Boroda / total-automation

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • total-automation
  • console
  • migrations
  • m170503_134226_add_mask_column_to_pag...
  • -In process
    9870b2b4
    Alexey Boroda authored
    2017-05-03 19:16:20 +0300  
    Browse Code ยป
m170503_134226_add_mask_column_to_page.php 341 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php
    
    use yii\db\Migration;
    
    class m170503_134226_add_mask_column_to_page extends Migration
    {
        public function up()
        {
            $this->addColumn('page', 'mask', $this->integer());
        }
        
        public function down()
        {
            $this->dropColumn('page', 'mask');
        }
    }