m180828_092957_page_update_updatedAt_createdAt.php 518 Bytes
<?php

use yii\db\Migration;

/**
 * Class m180828_092957_page_update_updatedAt_createdAt
 */
class m180828_092957_page_update_updatedAt_createdAt extends Migration
{


    // Use up()/down() to run migration code without a transaction.
    public function up()
    {
		$this->dropColumn('page','created_at');
		$this->dropColumn('page','updated_at');
		$this->addColumn('page','created_at',$this->integer());
		$this->addColumn('page','updated_at',$this->integer());
    }

    public function down()
    {

    }

}