码迷,mamicode.com
首页 > 数据库 > 详细

django 10.5 sqlite3迁移到mysql

时间:2017-11-07 21:00:41      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:pytho   als   save   cts   types   base   sla   app   tle   

参考: 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

标签:pytho   als   save   cts   types   base   sla   app   tle   

原文地址:http://www.cnblogs.com/rkfeng/p/7800730.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!