Problems with ActiveRecord assoc
- by ciss
Hello again, so i write my e-commerce shop cms and have some strange error:
ActiveRecord::StatementInvalid: Mysql::Error: Unknown column 'id' in 'where clause': DELETE FROM `properties` WHERE `id` = NULL
so, i have three models
Items:
class Item < ActiveRecord::Base
has_many :properties, :dependent => :destroy
has_many :types,…