如何在 Doctrine 中设置默认类型、排序规则和字符集数据库?

发布于 2024-11-17 21:34:33 字数 774 浏览 0 评论 0原文

如果我使用 Doctrine 1.2 for Symfony 1.4 构建模式,我必须添加选项:类型、整理和字符集,例如:

AlSupplier:
  options:
    type: InnoDB
    collate: utf8_unicode_ci
    charset: utf8
  columns:
    company_name:
      type: string(255)

AlCountry:
  options:
    type: InnoDB
    collate: utf8_unicode_ci
    charset: utf8
  columns:
    country_name:
      type: string(70)

AlSupplierCategory:
  actAs:
    NestedSet:
      hasManyRoots: true
      rootColumnName: root_id
    Searchable:
      fields: [category_keywords]
  options:
    type: InnoDB
    collate: utf8_unicode_ci
    charset: utf8
  columns:
    category_name:
      type: string(200)
    category_description:
      type: text
    category_keywords:
      type: text

如何设置默认选项(类型、整理、字符集)?我不想每次都这样写。

if i build schema with Doctrine 1.2 for Symfony 1.4 i must add options: type, collate and charset, for example:

AlSupplier:
  options:
    type: InnoDB
    collate: utf8_unicode_ci
    charset: utf8
  columns:
    company_name:
      type: string(255)

AlCountry:
  options:
    type: InnoDB
    collate: utf8_unicode_ci
    charset: utf8
  columns:
    country_name:
      type: string(70)

AlSupplierCategory:
  actAs:
    NestedSet:
      hasManyRoots: true
      rootColumnName: root_id
    Searchable:
      fields: [category_keywords]
  options:
    type: InnoDB
    collate: utf8_unicode_ci
    charset: utf8
  columns:
    category_name:
      type: string(200)
    category_description:
      type: text
    category_keywords:
      type: text

how can i set default options (type, collate, charset)? I don't want every time this write.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

灰色世界里的红玫瑰 2024-11-24 21:34:33

只需在 schema.yml 文件的顶部声明它们,它们就会应用于每个表:

options:
  type: InnoDB
  collate: utf8_unicode_ci
  charset: utf8

来源:http://www.symfony-project.org/doctrine/1_2/en/04-Schema-Files#chapter_04_global_schema_information

Just declare them at the top of the schema.yml file and they will be applied to every table:

options:
  type: InnoDB
  collate: utf8_unicode_ci
  charset: utf8

Source: http://www.symfony-project.org/doctrine/1_2/en/04-Schema-Files#chapter_04_global_schema_information

紫轩蝶泪 2024-11-24 21:34:33

我同意汤姆的解决方案。
另一个选项是 - 如果你希望 InnoDB 全局使用(例如也用于插件) - 在您的 ProjectConfiguration.php 中定义它:

public function configureDoctrineConnection(Doctrine_Connection $connection)
{
  $connection->setAttribute(Doctrine::ATTR_DEFAULT_TABLE_TYPE, 'InnoDB');
}

I agree to Tom's solution.
Another option would be - if you want InnoDB to be used globally (e.g. also for plugins) - to define it in your ProjectConfiguration.php:

public function configureDoctrineConnection(Doctrine_Connection $connection)
{
  $connection->setAttribute(Doctrine::ATTR_DEFAULT_TABLE_TYPE, 'InnoDB');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文