Displaying 1 result from an estimated 1 matches for "productphoto".
2006 Jul 18
2
newbie help re: loading data and relationships in migrations
...ey associated with the products table:
execute "alter table product_photos
add constraint fk_products
foreign key (product_id) references products(id)"
The models have the relationships defined:
class Product < ActiveRecord::Base
has_one :product_photo
...
class ProductPhoto < ActiveRecord::Base
belongs_to :product
...
In my data migration file, I create a Product, then a ProductPhoto and
try to link them:
prod1 = Product.create(...)
photo1 = ProductPhoto.create(...) -> has no reference to product_id
prod1.product_photo = photo1
There are no er...