django 10.5 sqlite3迁移到mysql
Posted coding Feng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django 10.5 sqlite3迁移到mysql相关的知识,希望对你有一定的参考价值。
参考: http://www.voidcn.com/article/p-hesvaooz-ru.html
原文:
python ./manage.py syncdb --database slave
变更为:
python manage.py migrate --run-syncdb --database slave
原文:
from django.contrib.contenttypes.models import ContentType def run(): def do(Table): if Table is not None: table_objects = Table.objects.all() for i in table_objects: i.save(using=‘slave‘) ContentType.objects.using(‘slave‘).all().delete() for i in ContentType.objects.all(): do(i.model_class())
变更为
# -*- coding:utf-8 -*-
from __future__ import unicode_literals
from django.contrib.contenttypes.models import ContentType
def run(): failed_list = [] def do(table): if table is not None: try: table_objects = table.objects.all() for i in table_objects: i.save(using=‘slave‘) except: failed_list.append(table) ContentType.objects.using(‘slave‘).all().delete() for i in ContentType.objects.all(): do(i.model_class()) while failed_list: table = failed_list.pop(0) do(table)
以上是关于django 10.5 sqlite3迁移到mysql的主要内容,如果未能解决你的问题,请参考以下文章
搭建 python 3.5+pycharm 2017.1.3+django 1.12.0 首次 将sqlite3 迁移到mysql
Django 数据库迁移错误(sqlite3->postgre)
Django 迁移:sqlite3 开发数据库、Amazon Elastic Beanstalk 和 Amazon RDS postgresql 实时数据库