python - 操作错误 : (1101, BLOB、TEXT、GEOMETRY 或 JSON 列 field_name 不能有默认值)

标签 python mysql django django-models django-mysql

工作环境:
1.Django 1.11
2.Python 3.6
3.MySQL社区服务器- 5.7.21

我一直在使用django-jsonfield对于我的 Django 模型。

import jsonfield
from django.db import models


class MySampleModel(models.Model):
    name = models.CharField(max_length=123)
    json_data = jsonfield.JSONField(default={})


正如我们所知,这个特定字段不支持 JSON 查找和聚合,因为它在 MYSQL 后端中创建为 LongText

所以,我决定使用Django-MYSQL ,支持JSONField也是如此,因此我将我的 models.py 更改为,

import jsonfield
from django.db import models
from django_mysql.models import JSONField as MYSQLJSONField


class MySampleModel(models.Model):
    name = models.CharField(max_length=123)
    json_data = jsonfield.JSONField(default={})
    new_jsonfield = MYSQLJSONField(default=dict)


然后我运行 makemigrations 命令,它成功执行并生成迁移文件。但是,当尝试运行 migrate 时,它会抛出错误,如

django.db.utils.OperationalError: (1101, "BLOB, TEXT, GEOMETRY or JSON column 'new_jsonfield' can't have a default value")


回溯:

Running migrations:
  Rendering model states... DONE
  Applying spider.0055_run_new_jsonfield...Traceback (most recent call last):
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/utils.py", line 64, in execute
    return self.cursor.execute(sql, params)
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 112, in execute
    return self.cursor.execute(query, args)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/cursors.py", line 226, in execute
    self.errorhandler(self, exc, value)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/connections.py", line 36, in defaulterrorhandler
    raise errorvalue
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/cursors.py", line 217, in execute
    res = self._query(query)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/cursors.py", line 378, in _query
    rowcount = self._do_query(q)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/cursors.py", line 341, in _do_query
    db.query(q)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/connections.py", line 280, in query
    _mysql.connection.query(self, query)
_mysql_exceptions.OperationalError: (1101, "BLOB, TEXT, GEOMETRY or JSON column 'new_jsonfield' can't have a default value")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "./manage.py", line 8, in <module>
    execute_from_command_line(sys.argv)
  File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 353, in execute_from_command_line
    utility.execute()
  File "/usr/local/lib/python3.6/site-packages/django/core/management/__init__.py", line 345, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 348, in run_from_argv
    self.execute(*args, **cmd_options)
  File "/usr/local/lib/python3.6/site-packages/django/core/management/base.py", line 399, in execute
    output = self.handle(*args, **options)
  File "/usr/local/lib/python3.6/site-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/python3.6/site-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/python3.6/site-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/python3.6/site-packages/django/db/migrations/executor.py", line 198, in apply_migration
    state = migration.apply(state, schema_editor)
  File "/usr/local/lib/python3.6/site-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/python3.6/site-packages/django/db/migrations/operations/fields.py", line 62, in database_forwards
    field,
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/mysql/schema.py", line 50, in add_field
    super(DatabaseSchemaEditor, self).add_field(model, field)
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/base/schema.py", line 396, in add_field
    self.execute(sql, params)
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/base/schema.py", line 110, in execute
    cursor.execute(sql, params)
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/utils.py", line 79, in execute
    return super(CursorDebugWrapper, self).execute(sql, params)
  File "/usr/local/lib/python3.6/site-packages/raven/contrib/django/client.py", line 123, in execute
    return real_execute(self, sql, params)
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/utils.py", line 64, in execute
    return self.cursor.execute(sql, params)
  File "/usr/local/lib/python3.6/site-packages/django/db/utils.py", line 95, in __exit__
    six.reraise(dj_exc_type, dj_exc_value, traceback)
  File "/usr/local/lib/python3.6/site-packages/django/utils/six.py", line 685, in reraise
    raise value.with_traceback(tb)
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/utils.py", line 64, in execute
    return self.cursor.execute(sql, params)
  File "/usr/local/lib/python3.6/site-packages/django/db/backends/mysql/base.py", line 112, in execute
    return self.cursor.execute(query, args)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/cursors.py", line 226, in execute
    self.errorhandler(self, exc, value)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/connections.py", line 36, in defaulterrorhandler
    raise errorvalue
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/cursors.py", line 217, in execute
    res = self._query(query)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/cursors.py", line 378, in _query
    rowcount = self._do_query(q)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/cursors.py", line 341, in _do_query
    db.query(q)
  File "/usr/local/lib/python3.6/site-packages/MySQLdb/connections.py", line 280, in query
    _mysql.connection.query(self, query)
django.db.utils.OperationalError: (1101, "BLOB, TEXT, GEOMETRY or JSON column 'new_jsonfield' can't have a default value")


生成的迁移文件

from __future__ import unicode_literals

from django.db import migrations
import django_mysql.models


class Migration(migrations.Migration):

    dependencies = [
        ('app_name', 'some_prev_migrationfile'),
    ]

    operations = [
        migrations.AddField(
            model_name='mysamplemodel',
            name='new_jsonfield',
            field=django_mysql.models.JSONField(default=dict),
        ),
    ]


问题

如何安全django-jsonfield迁移到Django-MYSQL> 在这种情况下?

最佳答案

这应该有效-

import jsonfield
from django.db import models
from django_mysql.models import JSONField as MYSQLJSONField


class MySampleModel(models.Model):
    name = models.CharField(max_length=123)
    json_data = jsonfield.JSONField(default={})
    new_jsonfield = MYSQLJSONField(default={})

或者尝试:

import jsonfield
from django.db import models
from django_mysql.models import JSONField as MYSQLJSONField

def default_json():
    return {'data': 'bar'}

class MySampleModel(models.Model):
    name = models.CharField(max_length=123)
    json_data = jsonfield.JSONField(default={})
    new_jsonfield = MYSQLJSONField(default=default_json)

希望这有帮助:)

关于python - 操作错误 : (1101, BLOB、TEXT、GEOMETRY 或 JSON 列 field_name 不能有默认值),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50817695/

相关文章:

Django 测试 : mock user login

python - 导入错误 : cannot import name SerialPort on Twisted

python - 使用 pandas 从字符串生成 N-Grams

PHP 和 MySQL 形式,我做错了什么?

mysql - sails.js 多对多关系连接表的额外字段

时间:2019-03-17 标签:c#linqOrderByDescending withinnerLastOrDefault

python - 为什么 Django 语言本地化的 makemessages 函数会忽略 html 文件?

python - 管理端修改django

python - 如何使列表理解更具可读性?

python - 在 mustache/pystache 中迭代字典的键和值