django迁移文件时出错,然后发现只迁移成功一半的sql表格,另外一半重新执行命令无法迁移成功,解决方法
Posted sewen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django迁移文件时出错,然后发现只迁移成功一半的sql表格,另外一半重新执行命令无法迁移成功,解决方法相关的知识,希望对你有一定的参考价值。
Traceback (most recent call last): File "manage.py", line 22, in <module> execute_from_command_line(sys.argv) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangocoremanagement\__init__.py", line 364, in execute_from_command_line utility.execute() File "D:python_learnmeiduo_projectenvlibsite-packagesdjangocoremanagement\__init__.py", line 356, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangocoremanagementase.py", line 283, in run_from_argv self.execute(*args, **cmd_options) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangocoremanagementase.py", line 330, in execute output = self.handle(*args, **options) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangocoremanagementcommandsmigrate.py", line 202, in handle post_migrate_state = executor.migrate( File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbmigrationsexecutor.py", line 115, in migrate state = self._migrate_all_forwards(state, plan, full_plan, fake=fake, fake_initial=fake_initial) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbmigrationsexecutor.py", line 145, in _migrate_all_forwards state = self.apply_migration(state, migration, fake=fake, fake_initial=fake_initial) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbmigrationsexecutor.py", line 244, in apply_migration state = migration.apply(state, schema_editor) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbmigrationsmigration.py", line 129, in apply operation.database_forwards(self.app_label, schema_editor, old_state, project_state) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbmigrationsoperationsmodels.py", line 97, in database_forwards schema_editor.create_model(model) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbackendsaseschema.py", line 303, in create_model self.execute(sql, params or None) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbackendsaseschema.py", line 120, in execute cursor.execute(sql, params) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbackendsutils.py", line 79, in execute return super(CursorDebugWrapper, self).execute(sql, params) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbackendsutils.py", line 64, in execute return self.cursor.execute(sql, params) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbutils.py", line 94, in __exit__ six.reraise(dj_exc_type, dj_exc_value, traceback) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangoutilssix.py", line 685, in reraise raise value.with_traceback(tb) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbackendsutils.py", line 62, in execute return self.cursor.execute(sql) File "D:python_learnmeiduo_projectenvlibsite-packagesdjangodbackendsmysqlase.py", line 101, in execute return self.cursor.execute(query, args) File "D:python_learnmeiduo_projectenvlibsite-packagespymysqlcursors.py", line 170, in execute result = self._query(query) File "D:python_learnmeiduo_projectenvlibsite-packagespymysqlcursors.py", line 328, in _query conn.query(q) File "D:python_learnmeiduo_projectenvlibsite-packagespymysqlconnections.py", line 517, in query self._affected_rows = self._read_query_result(unbuffered=unbuffered) File "D:python_learnmeiduo_projectenvlibsite-packagespymysqlconnections.py", line 732, in _read_query_result result.read() File "D:python_learnmeiduo_projectenvlibsite-packagespymysqlconnections.py", line 1075, in read first_packet = self.connection._read_packet() File "D:python_learnmeiduo_projectenvlibsite-packagespymysqlconnections.py", line 684, in _read_packet packet.check_error() File "D:python_learnmeiduo_projectenvlibsite-packagespymysqlprotocol.py", line 220, in check_error err.raise_mysql_exception(self._data) File "D:python_learnmeiduo_projectenvlibsite-packagespymysqlerr.py", line 109, in raise_mysql_exception raise errorclass(errno, errval) django.db.utils.InternalError: (1050, "Table ‘tb_content‘ already exists")
未迁移成功的表格也会显示已经迁移成功
删migrations目录、django_migrations表中的相应的迁移记录
然后执行
python manage.py makemigrations
python manage.py migrate
以上是关于django迁移文件时出错,然后发现只迁移成功一半的sql表格,另外一半重新执行命令无法迁移成功,解决方法的主要内容,如果未能解决你的问题,请参考以下文章
Python Django 1.9 迁移错误“创建新内容类型时出错...”