You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package generates the SQL script for the unmanaged model as well. Whereas the Django migrate command ignore creating tables for the un-managed model
For eg below is the un-managed model. Ideally SQL script should not be created for this model as managed = False used in the class Meta.
class PollListingView(models.Model):
id = models.UUIDField(primary_key=True)
title = models.CharField(max_length=128, null=False, db_index=True)
status = models.CharField(max_length=16, default='unapproved')
class Meta:
managed = False
db_table = 'poll_listing_view'
The text was updated successfully, but these errors were encountered:
This package generates the SQL script for the unmanaged model as well. Whereas the Django migrate command ignore creating tables for the un-managed model
For eg below is the un-managed model. Ideally SQL script should not be created for this model as managed = False used in the class Meta.
The text was updated successfully, but these errors were encountered: