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->
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
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