﻿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
24404	Custom ManyToManyField doesnt create a specific table	SiDChik	nobody	"I'm trying to create a custom field:
{{{
class CommentsField(models.ManyToManyField):
    pass
}}}

When im trying to use it and create a migration:
{{{
comments = CommentsField(Comment, null=True, default=None, blank=True)
}}}
Migration looks fine but than i apply it django doesnt create any table. So than i use this field i get an error:
{{{
(1146, ""Table 'ilab.params_measures_comments' doesn't exist"")
}}}
I have an issue to create field with builtin widget and manytomany widget... And looks like i can't do it without fix. 
"	Bug	closed	Migrations	1.7	Normal	duplicate			Unreviewed	0	0	0	0	0	0
