Re: What is this? CASCADE clausule on DROP COLUMN???

2016-08-25 Thread RompePC
Hi, I searched for it, and looks like Django uses a general schema constants for common commands (like *ALTER*). It is stored inside a class, which is the parent class of the rest of the RDBMS schemas. And it isn't replaced, so it justs assumes the value of the parent. More info

Re: What is this? CASCADE clausule on DROP COLUMN???

2016-08-25 Thread Erik Cederstrand
> Den 25. aug. 2016 kl. 17.09 skrev RompePC : > > I did a migration of Django, and then applied a sqlmigrate, giving me this > output... > > BEGIN; > -- > -- Remove field my_column from my_table > -- > ALTER TABLE `my_table` DROP COLUMN `my_column` CASCADE; > > I

What is this? CASCADE clausule on DROP COLUMN???

2016-08-25 Thread RompePC
I did a migration of Django, and then applied a *sqlmigrate*, giving me this output... BEGIN; -- -- Remove field my_column from my_table -- ALTER TABLE `my_table` DROP COLUMN `my_column` CASCADE; I don't find info about it, and I've never seen something like this in my MySQL experience. And