Commit 9234131c authored by Andrew Godwin's avatar Andrew Godwin
Browse files

Remove weird syncdb managed thing - no longer needed.

parent 45e5eede
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ class Command(NoArgsCommand):
            opts = model._meta
            converter = connection.introspection.table_name_converter
            # Note that if a model is unmanaged we short-circuit and never try to install it
            return opts.managed and not ((converter(opts.db_table) in tables) or
            return not ((converter(opts.db_table) in tables) or
                (opts.auto_created and converter(opts.auto_created._meta.db_table) in tables))