Symfony-Doctrine:正确的YAML语法,用于数字字段的默认值

时间:2012-03-26 14:16:43

标签: symfony1 doctrine yaml

这是我的schema.yml的一部分:

ProductTags:
  columns:
    product_id: { type: integer, notnull: true }
    tag_id: { type: integer, notnull: true }
    discount: { type: numeric, size: 3, scale: 1, notnull: true, default: 0 }

但是当生成sql时,折扣字段带有default关键字,但后面没有默认值。

如何才能获得正确的结果?

0 个答案:

没有答案