This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# This hack adds a new Meta option "db_column_prefix". If not None all | |
# database columns in a model will be prepended with this prefix (the | |
# database columns, not the attributes). See Person model for an | |
# example. | |
# | |
# Issues: | |
# - How to set a prefix for a m2m table? - If "through" argument is | |
# not specified on a M2MField, Django automatically adds a model |