m160210_101931_country.php
443 Bytes
<?php
use yii\db\Migration;
class m160210_101931_country extends Migration
{
public function up()
{
$this->createTable('{{%country}}', [
'country_id' => $this->primaryKey(),
'oid' => $this->integer(),
'country_name' => $this->string(),
'country_name_en' => $this->string(),
]);
}
public function down()
{
$this->dropTable('{{%country}}');
}
}