这是我的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关键字,但后面没有默认值。
如何才能获得正确的结果?