for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use yii\db\Migration;
/**
* Handles the creation of table `technologies`.
*/
class m180531_170328_create_technologies_table extends Migration
{
* {@inheritdoc}
public function safeUp()
$this->createTable('technologies', [
'id' => $this->primaryKey(),
'name' => $this->string(128)->notNull(),
'share' => $this->tinyInteger(),
'icon' => $this->string(128),
'created_at' => $this->dateTime(),
'updated_at' => $this->dateTime(),
]);
}
public function safeDown()
$this->dropTable('technologies');