def forwards(apps, schema_editor):
    ignore_no_such_table(populate_table, apps, schema_editor, "auth", "User",
                         "accounts", "User")

    ignore_no_such_table(populate_table, apps, schema_editor, "auth",
                         "User_groups", "accounts", "User_groups")

    ignore_no_such_table(populate_table, apps, schema_editor, "auth",
                         "User_user_permissions", "accounts",
                         "User_user_permissions")
Ejemplo n.º 2
0
def forwards(apps, schema_editor):
    ignore_no_such_table(empty_table,
            apps, schema_editor,
            "auth", "User_user_permissions")
    ignore_no_such_table(empty_table,
            apps, schema_editor,
            "auth", "User_groups")
    ignore_no_such_table(empty_table,
            apps, schema_editor,
            "auth", "User")
def forwards(apps, schema_editor):
    ignore_no_such_table(populate_table,
            apps, schema_editor,
            "auth", "User",
            "accounts", "User")

    ignore_no_such_table(populate_table,
            apps, schema_editor,
            "auth", "User_groups",
            "accounts", "User_groups")

    ignore_no_such_table(populate_table,
            apps, schema_editor,
            "auth", "User_user_permissions",
            "accounts", "User_user_permissions")
Ejemplo n.º 4
0
def forwards(apps, schema_editor):
    ignore_no_such_table(empty_table, apps, schema_editor, "auth",
                         "User_user_permissions")
    ignore_no_such_table(empty_table, apps, schema_editor, "auth",
                         "User_groups")
    ignore_no_such_table(empty_table, apps, schema_editor, "auth", "User")