- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,我正在学习使用 South,并且我已经处理了一些问题。我使用如下模型进行了初始应用程序迁移:
class Poll(models.Model):
pass
然后添加我的字段...
class Poll(models.Model):
question = models.CharField(max_length=200)
pub_date = models.DateTimeField()
在迁移期间,South 提示这些字段没有默认值,所以我输入了一些但没有用...现在当我尝试从模型中删除它们并迁移回空模式时,我得到以下回溯:
mirkocrocop@Mirkos-MacBook-Pro:~/workspace/toastdriven$ python manage.py migrate polls
Running migrations for polls:
- Migrating forwards to 0007_auto__del_field_poll_question.
> polls:0003_auto__add_field_poll_question__add_field_poll_pub_date
Traceback (most recent call last):
File "manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/core/management/__init__.py", line 443, in execute_from_command_line
utility.execute()
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/core/management/__init__.py", line 382, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/core/management/base.py", line 196, in run_from_argv
self.execute(*args, **options.__dict__)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/core/management/base.py", line 232, in execute
output = self.handle(*args, **options)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/management/commands/migrate.py", line 108, in handle
ignore_ghosts = ignore_ghosts,
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/__init__.py", line 213, in migrate_app
success = migrator.migrate_many(target, workplan, database)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 235, in migrate_many
result = migrator.__class__.migrate_many(migrator, target, migrations, database)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 310, in migrate_many
result = self.migrate(migration, database)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 133, in migrate
result = self.run(migration)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 106, in run
dry_run.run_migration(migration)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 191, in run_migration
self._run_migration(migration)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 178, in _run_migration
raise exceptions.FailedDryRun(migration, sys.exc_info())
south.exceptions.FailedDryRun: ! Error found during dry run of '0003_auto__add_field_poll_question__add_field_poll_pub_date'! Aborting.
Traceback (most recent call last):
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 175, in _run_migration
migration_function()
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 57, in <lambda>
return (lambda: direction(orm))
File "/Users/mirkocrocop/workspace/toastdriven/polls/migrations/0003_auto__add_field_poll_question__add_field_poll_pub_date.py", line 19, in forwards
keep_default=False)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/db/sqlite3.py", line 31, in add_column
field.column: self._column_sql_for_create(table_name, name, field, False),
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/db/sqlite3.py", line 189, in _column_sql_for_create
sql = self.column_sql(table_name, name, field, with_name=False, field_prepared=True)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/db/generic.py", line 688, in column_sql
default = field.get_db_prep_save(default, connection=self._get_connection())
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 292, in get_db_prep_save
prepared=False)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 816, in get_db_prep_value
value = self.get_prep_value(value)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 801, in get_prep_value
value = self.to_python(value)
File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 785, in to_python
raise exceptions.ValidationError(msg)
ValidationError: [u"'0' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ] format."]
我该如何解决这个问题,添加这些字段+从空模型迁移到字段填充模型的正确方法是什么?我一直在浏览 South 的文档,但我不明白......我做了一切 according to the documentation ,但我不确定应该将 DateTimeField 默认设置为什么...
最佳答案
当您必须提供默认值时,您正在与 Python 解释器进行交互。如前所述,datetime
模块在那个时间点可用。在这种情况下,要为 DateTimeField
提供默认值,只需提供一个 datetime
对象:
# Use the current date and time
datetime.datetime.now()
# Or a specific date and time
datetime.datetime(2012, 10, 1, 17, 30, 0, 0)
关于django - Django-South 迁移期间的 ValidationError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13088512/
我正在尝试用 Python 和 Django 开发一个项目,使用 South 进行数据库迁移。 我对南方很陌生,目前在尝试运行任何命令syncdb或runserver时面临一个问题: “您的数据库没有
我有两个类,其中一个是另一个类的后代,我想让它们都是同一个基类的兄弟类。 前: from django.db import models class A(models.Model): name
我是 django 的新手,我从南方收到这个错误,但我不知道我错过了什么。我在寻找答案,但找不到任何东西。 There is no South database module 'south.db.po
安装 Django 后,我收到此错误消息(当我想运行迁移或运行服务器时): There is no South database module 'south.db.mysql' for your da
尝试将django从1.7.4升级到1.8;然而,当我运行服务器时,我现在得到 您的数据库没有 South 数据库模块“south.db.mysql”。请选择受支持的数据库,检查 SOUTH_DATA
我刚刚开始使用 South(终于),它确实是一个很棒的工具。我启动了一个项目并进行了一些初始迁移以感受南方的感觉。我现在刚刚将这个项目 git 克隆到一台新机器上。没有数据库数据,因为还没有数据输入。
使用他人代码的分支,我添加了一个模型字段并进行了通常的自动迁移: ~ $ django_admin.py migrate mezzanine_slides --auto You cannot use
South 尊重数据库路由器吗?我设置了路由器以将某些应用程序路由到一个数据库,并将所有其他应用程序路由到默认数据库。我什至确保南迁移历史表在两个数据库中。但是我不能让 South 只在适当的数据库中
我有一个模型 class Mystery(models.Model): first = models.CharField(max_length=256) second = models
因此,我向 Django 模型字段添加了一个默认值,然后运行: $ python manage.py schemamigration myapp --auto 似乎什么都没有改变。 什么啊? 谢谢!
我改变了我的模型: class DistList(models.Model): creator = models.ForeignKey(User, related_name='creator')
我将一些数据批量加载到我的 Postgresql 数据库中,却发现所有数据都有点不对。为了纠正这个问题,我刷新数据库以重新加载正确的数据。 数据重新加载,我对模型进行了更改并应用了正常的 ./mana
我正在尝试重置我的南迁移历史,但无法为 myapp 运行迁移。我的 settings.py 是: ... 'south', 'myapp', 'allauth', 'allauth.account',
我在一个带有 postgres 数据库的新站点上使用 south 和 django。我正在尝试进行初始迁移,但出现以下错误 django.db.utils.DatabaseError: invalid
我正在尝试开始使用 South。我有一个现有数据库并添加了 South(syncdb、schemamigration --initial)。 然后,我更新了 models.py 以添加一个字段并运行
我有以下名为 UnixTimestampField 的类: from django.db import models from datetime import datetime from time i
让我感到困惑。假设我们有一个向南迁移的 Django 项目。目前,生产项目版本为 A , 开发中的版本 B .现在让我们假设版本 B已安装到生产环境中: 安装新代码 运行 ./manage.py sy
我最近开始在我的 Django 项目中使用 South 进行迁移。一切都很顺利,直到最近我遇到了一个特殊的问题。 我的项目中有两个应用程序,例如 App-A 和 App-B。 App-A 中的模型具有
我正在新的开发环境中部署一个项目。 当我使用 South 时,我做了: $ python manage.py syncdb --all $ python manage.py migrate --fak
我正在尝试使用现有数据转发迁移模型。该模型有一个新字段,其约束为 unique=True 和 null=False。 当我做 ./manage.py schemamigration myapp --a
我是一名优秀的程序员,十分优秀!