1
0
mirror of https://github.com/django/django.git synced 2025-10-29 08:36:09 +00:00

Removed the syncdb command per deprecation timeline.

This commit is contained in:
Tim Graham
2014-12-26 12:34:26 -05:00
parent f4f24d30e0
commit f6463bb380
12 changed files with 14 additions and 89 deletions

View File

@@ -11,7 +11,7 @@ class MigrationRecorder(object):
Deals with storing migration records in the database.
Because this table is actually itself used for dealing with model
creation, it's the one thing we can't do normally via syncdb or migrations.
creation, it's the one thing we can't do normally via migrations.
We manually handle table creation/schema updating (using schema backend)
and then have a floating model to do queries with.