public $table = 'item';
public function up() {
$columns = array(
'id' => 'pk',
'name' => 'string NOT NULL',
'category_id' => 'integer');
$this->createTable($this->table, $columns, 'engine=INNODB');
// Foreign Keys:
$this->addForeignKey('fk_' . $this->table . '_category_id', $this->table, 'category_id', 'item_category', 'id', 'CASCADE', 'CASCADE');
}
таблица item_category должна быть уже создана