createTable('org_phones', [ 'id' => $this->primaryKey(), 'org_id' => $this->integer(), 'name' => $this->string(), 'phone' => $this->string() ]); } /** * @inheritdoc */ public function down() { $this->dropTable('org_phones'); } }