我正在尝试使用dumpdata命令备份整个数据库,这给了我错误。(无法序列化数据库:column technical_information_floorinformation.far_fifth不存在 第1行:... al_information_floorinformation“。” remark_fourth“,”技术... ^)
def get_dumpdata(request):
context={}
file_path = '{}/fixtures/dumpdata.json'.format(BASE_DIR)
f = open(file_path, 'w')
call_command(
'dumpdata',
stdout=f,
format='json'
)
f.close()