模式中的 Symfony 字符串字段导致 MySQL TEXT 字段

发布于 2024-12-10 12:39:11 字数 610 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏九 2024-12-17 12:39:11

不修改教义代码就不行。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文