Re: Automatically add related data after insert

2009-09-12 Thread Miles J
http://book.cakephp.org/view/84/Saving-Related-Model-Data-hasOne-hasMany-belongsTo On Sep 12, 5:45 am, Furuno wrote: > Hello. > > Let's say that I want to create an application to manage inventories > in each stores. I have the following tables : > > Table : products > - id > - name > > Table :

Automatically add related data after insert

2009-09-12 Thread Furuno
Hello. Let's say that I want to create an application to manage inventories in each stores. I have the following tables : Table : products - id - name Table : stores - id - name Table : inventories - id - product_id - store_id - qty Every time a new product or store is added. The application