Re: Ashwood Issues

2011-11-18 Thread gilbertoca
Michael Gentry-2 wrote: > > BTW Andrus, the algorithm I was using in my entity sorter had a pretty > significant flaw, so I'm going to have to restart it at some point. > However, it did help us find a deep DbEntity cycle that was messing > Ashwood up. We had something like A->B->C->D->E->F->G->

Re: Foreign keys whe migrating

2011-11-18 Thread Aristedes Maniatis
On Fri Nov 18 23:42:37 2011, Christian Grobmeier wrote: Hi all, sometimes my Modelere throws an error when I alter my database, because of foreign key restrictions. To avoid this, one must do this: SET foreign_key_checks =0; and afterwards this: SET foreign_key_checks =1; (on a mysql) to make

Foreign keys whe migrating

2011-11-18 Thread Christian Grobmeier
Hi all, sometimes my Modelere throws an error when I alter my database, because of foreign key restrictions. To avoid this, one must do this: SET foreign_key_checks =0; and afterwards this: SET foreign_key_checks =1; (on a mysql) to make the migration a success. I wonder if there are sometimes