﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10647	Many-to-many tables are created even with managed=False	Pavel Anossov	Jacob	"What else can I say..
django.db.backends.creation.sql_for_many_to_many has no guards whatsoever.
{{{
    def sql_for_many_to_many(self, model, style):
        ""Return the CREATE TABLE statments for all the many-to-many tables defined on a model""
        output = []
        for f in model._meta.local_many_to_many:
            output.extend(self.sql_for_many_to_many_field(model, f, style))
        return output
}}}"		closed	Database layer (models, ORM)	dev		fixed	managed, manytomany		Accepted	1	1	0	0	0	0
