db->driverName === 'mysql') { $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB'; } $this->createTable('task', [ 'id' => $this->primaryKey(), 'name' => $this->string()->notNull(), ], $tableOptions); } public function safeDown() { $this->dropTable('task'); } }