diff --git a/AUTHORS b/AUTHORS index 1f97ee3cd31..e7b53d5bf03 100644 --- a/AUTHORS +++ b/AUTHORS @@ -47,6 +47,7 @@ answer newbie questions, and generally made Django that much better: C8E Amit Chakradeo ChaosKCW + Ian Clelland Matt Croydon Jonathan Daugherty (cygnus) Jason Davies (Esaj) diff --git a/django/core/management.py b/django/core/management.py index 3838c2abee7..ea995bbd7a7 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -454,6 +454,7 @@ def syncdb(): print "Creating table %s" % model._meta.db_table for statement in sql: cursor.execute(statement) + table_list.append(model._meta.db_table) for model in model_list: if model in created_models: