createTable('test', [ 'id' => \$this->primaryKey(), 'address' => \$this->string(), 'address2' => \$this->string(), 'email' => \$this->string(), ]); } /** * @inheritdoc */ public function down() { \$this->dropTable('test'); } } CODE;