Provokator86
Мой дом здесь!
- Регистрация
- 27 Май 2012
- Сообщения
- 365
- Реакции
- 237
- Автор темы
- #1
Доброго времени суток.
Обновляю фреймворк с 3.1 до последней версии 3.3 и, как всегда не всё гладко.
Почти все проблемы устранены, но одна осталась
В браузере выдает
В коде
Вроде всё по фен шую, но проблема не устраняется.
Прошу помощи знатоков, ибо идеи мои иссякли....
Обновляю фреймворк с 3.1 до последней версии 3.3 и, как всегда не всё гладко.
Почти все проблемы устранены, но одна осталась
В браузере выдает
Database_Exception [ 1054 ]: Unknown column 'articles.id' in 'on clause' [ SELECT `status`.`id` AS `status:id`, `status`.`name` AS `status:name`, `status`.`code` AS `status:code`, `status`.`edit_date` AS `status:edit_date`, `article`.`id`
protected $_belongs_to = array(
// proper relations. Can not be deleted if business deleted
'status' => array(
'model' => 'Status',
'foreign_key' => 'status_id',
),
'author' => array(
'model' => 'User',
'foreign_key' => 'author_id',
)
);
protected $_has_many = array(
'categories' => array(
'model' => 'Category',
'through' => 'articles_categories'
),
'businesses' => array(
'model' => 'Business',
'through' => 'articles_businesses'
),
'cities' => array(
'model' => 'Address_City',
'through' => 'articles_cities'
),
'images' => array(
'model' => 'Image',
'through' => 'articles_images',
),
);
protected $_load_with = array('status');
public function get_resource_id()
{
return 'article';
}
// proper relations. Can not be deleted if business deleted
'status' => array(
'model' => 'Status',
'foreign_key' => 'status_id',
),
'author' => array(
'model' => 'User',
'foreign_key' => 'author_id',
)
);
protected $_has_many = array(
'categories' => array(
'model' => 'Category',
'through' => 'articles_categories'
),
'businesses' => array(
'model' => 'Business',
'through' => 'articles_businesses'
),
'cities' => array(
'model' => 'Address_City',
'through' => 'articles_cities'
),
'images' => array(
'model' => 'Image',
'through' => 'articles_images',
),
);
protected $_load_with = array('status');
public function get_resource_id()
{
return 'article';
}
Прошу помощи знатоков, ибо идеи мои иссякли....