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
| """ | |
| Came up with this for satchmo's downloadable product migration, 0001_split. | |
| """ | |
| def db_table_exists(table, cursor=None): | |
| try: | |
| if not cursor: | |
| from django.db import connection | |
| cursor = connection.cursor() | |
| if not cursor: | |
| raise Exception |