Skip to content

Instantly share code, notes, and snippets.

@kvnramirez
Forked from rctay/gist:527113
Created November 3, 2018 04:21
Show Gist options
  • Save kvnramirez/2cd391714803bd0378b57e0d48ff5b13 to your computer and use it in GitHub Desktop.
Save kvnramirez/2cd391714803bd0378b57e0d48ff5b13 to your computer and use it in GitHub Desktop.
[django] check if db table exists
def db_table_exists(table_name):
return table_name in connection.introspection.table_names()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment