简体   繁体   English

Django在删除迁移文件和迁移表后未创建数据库表

[英]Django not creating database table after deleting migrations files and migration table

I have created two tables profile and details through django model and mistakenly i have deleted both these tables. 我已经通过Django模型创建了两个表配置文件和详细信息,并且错误地删除了这两个表。 Further when i tried to create table using 当我尝试使用创建表时

python2.7 manage.py makemigrations

and

python2.7 manage.py migrate 

then it was not creating the tables so i deleted migration files and truncated the django_migration table. 然后它没有创建表,所以我删除了迁移文件并截断​​了django_migration表。 Now when i am running command 现在当我运行命令

python2.7 manage.py runserver

Its giving me error 它给我错误

You have unapplied migrations; your app may not work properly until they are applied.
Run 'python manage.py migrate' to apply them.

And if i run python manage.py migrate command error is 如果我运行python manage.py migrate命令错误是

Operations to perform:
Apply all migrations: home, contenttypes, auth, sessions
Running migrations:
Rendering model states... DONE
Applying contenttypes.0001_initial...Traceback (most recent call last):
File "manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 350, in execute_from_command_line
utility.execute()
File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 342, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 348, in run_from_argv
self.execute(*args, **cmd_options)
File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 399, in execute
output = self.handle(*args, **options)
File "/usr/local/lib/python2.7/dist-packages/django/core/management/commands/migrate.py", line 200, in handle
executor.migrate(targets, plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/executor.py", line 92, in migrate
self._migrate_all_forwards(plan, full_plan, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/executor.py", line 121, in _migrate_all_forwards
state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial)
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/executor.py", line 198, in apply_migration
state = migration.apply(state, schema_editor)
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/migration.py", line 123, in apply
operation.database_forwards(self.app_label, schema_editor, old_state, project_state)
File "/usr/local/lib/python2.7/dist-packages/django/db/migrations/operations/models.py", line 59, in database_forwards
schema_editor.create_model(model)
File "/usr/local/lib/python2.7/dist-packages/django/db/backends/base/schema.py", line 284, in create_model
self.execute(sql, params or None)
File "/usr/local/lib/python2.7/dist-packages/django/db/backends/base/schema.py", line 110, in execute
cursor.execute(sql, params)
File "/usr/local/lib/python2.7/dist-packages/django/db/backends/utils.py", line 79, in execute
return super(CursorDebugWrapper, self).execute(sql, params)
File "/usr/local/lib/python2.7/dist-packages/django/db/backends/utils.py", line 64, in execute
return self.cursor.execute(sql, params)
File "/usr/local/lib/python2.7/dist-packages/django/db/utils.py", line 95, in __exit__
six.reraise(dj_exc_type, dj_exc_value, traceback)
File "/usr/local/lib/python2.7/dist-packages/django/db/backends/utils.py", line 62, in execute
return self.cursor.execute(sql)
django.db.utils.ProgrammingError: relation "django_content_type" already exists 

运行以下命令:

python manage.py migrate --fake-initial

You need to first fake migrations for each of those built-in apps 您需要首先为每个内置应用伪造迁移

python manage.py migrate --fake auth python manage.py migration-假验证
python manage.py migrate --fake contenttypes python manage.py migration --fake内容类型

the run fake initial 运行假冒的首字母

python manage.py migrate --fake-initial python manage.py migration --fake-initial

This most probably should work for you. 这很可能应该为您工作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM