Re: Table Rename Join Error

2008-10-17 Thread MDB
I finally figured it out. I changed the table name (scheduler_customers_sheduler_services) but I didn't change the column names to scheduler_customer_id and scheduler_service_id. Once I did that it started working again. Thanks again for your help. On Oct 17, 10:00 am, MDB <[EMAIL PROTECTED]>

Re: Table Rename Join Error

2008-10-17 Thread MDB
Okay, here is what I have now and I am no longer getting any error but the services for the cusomer are no longer showing. table customers is now scheduler_customers table services is now scheduler_customers table customers_services is now scheduler_customers_sheduler_services. My customer model

Re: Table Rename Join Error

2008-10-17 Thread MDB
Thank you, that fixed the error however now the services are not showing for the customer. Is there something else that I am missing? On Oct 17, 9:14 am, scs <[EMAIL PROTECTED]> wrote: > Cake handles the join table naming convention based off the tables > used, rename your join table to customer

Re: Table Rename Join Error

2008-10-17 Thread scs
Cake handles the join table naming convention based off the tables used, rename your join table to customers_scheduler_services On Oct 17, 8:22 am, MDB <[EMAIL PROTECTED]> wrote: > Being new to cake (became the owner of 2 cakephp applications), I dont > think I am getting something simple.  First

Table Rename Join Error

2008-10-17 Thread MDB
Being new to cake (became the owner of 2 cakephp applications), I dont think I am getting something simple. First, I have three tables, customers (PK ID int), services (PK ID int) and then customers_services (customer_id int, service_id int). I then have the 2 models below. I am in the process