我正在制作一个具有import { renderStylesToString } from 'emotion-server'
和Product
属性的short_description
表。 long_description
不得超过250个字符。让Rails模型验证字符长度(作为文本数据类型)还是让Postgres验证字符长度(作为字符串数据类型)会更快。
short_description
vs
t.text :long_description # will be max at 1,000 characters
t.string :short_description # will be max at 250 characters