我发现了一个关于Postgres的新东西:复合类型。我非常喜欢这种方法,对我来说非常有用。
问题是rails的ActiveRecord没有本机支持。
你曾经使用过Rails的Postgres复合类型吗?是一种很好的体验还是您更喜欢为这种嵌套数据创建新模型的常用方法?
http://www.postgresql.org/docs/8.4/static/rowtypes.html
韩国社交协会! : - )
答案 0 :(得分:4)
这是PostgreSQL的一个有趣功能,但我没有机会使用它。
Rails方面会想到一些事情:
数据库方面会想到一些事情:
除非您考虑的具体应用具有令人信服的好处,否则我建议采用更加规范化的方法。而不是:
CREATE TYPE inventory_item AS (
name text,
supplier_id integer,
price numeric
);
CREATE TABLE on_hand (
item inventory_item,
count integer
);
INSERT INTO on_hand VALUES (ROW('fuzzy dice', 42, 1.99), 1000);
通过执行以下操作,您可以获得类似的结果,同时保持对ActiveRecord的完全支持,而无需扩展Postgres适配器或创建自定义类:
CREATE TABLE inventory_item (
id integer,
name text,
supplier_id integer,
price numeric
);
CREATE TABLE on_hand (
inventory_item_id integer,
count integer
);
INSERT INTO inventory_item VALUES ('fuzzy dice', 42, 1.99) RETURNS INTEGER;
INSERT INTO on_hand VALUES (<inventory_item_id>, 1000);