模式中的 Symfony 字符串字段导致 MySQL TEXT 字段
我正在使用 symfony 1.4,并且表中有一个具有以下定义的字段:
subject: { type: string(300), fixed: false, notnull: true }
由此生成的迁移是:
'subject' =>
array(
'type' => 'string',
'fixed' => '0',
'notnull' => '1',
'length' => '300',
),
运行此迁移会创建 MySQL DDL 代码,该代码将主题字段设置为 TEXT
类型,而不是 <代码>varchar(300)。
但是,如果我将 300
更改为 200
,迁移将创建一个 varchar(200)
类型的字段。
有没有办法强制 symfony/doctrine 创建此字段作为 varchar(300) ?
I am using symfony 1.4 and have a field in a table with this definition:
subject: { type: string(300), fixed: false, notnull: true }
The migration generated from this is:
'subject' =>
array(
'type' => 'string',
'fixed' => '0',
'notnull' => '1',
'length' => '300',
),
Running this migration creates MySQL DDL code which sets the subject field to be of type TEXT
rather than varchar(300)
.
However, if I change the 300
to 200
the migration creates a field of type varchar(200)
.
Is there a way to force symfony/doctrine to create this field as a varchar(300)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不修改教义代码就不行。
Doctrine_Connection_Mysql
表示 varchar 字段的最大长度为 255 个字符。对于 5.0.3 之前的 mysql 来说也是如此,并且 Domdom 使用该值是出于兼容性原因。Not without editing the code of doctrine.
Doctrine_Connection_Mysql
says the maximum length of varchar fields is 255 characters. This is true for mysql before 5.0.3, and doctrine uses this value for compatibility reasons.