2016-11-22 38 views

回答

3

model Shop::Product looking table shop_products. Why?

Because of Inflector

The Inflector transforms words from singular to plural, class names to table names, modularized class names to ones without, and class names to foreign keys.

通過Rails約定,您應該將db表名更改爲shop_products

如果你想有一個不同的名字talbe比模特的名字所暗示的,你應該指定table_name

class Shop::Product 
    self.table_name = :products 
end 
+0

謝謝你,安德烈 –