2

在使用comfort_mexican_sofa gem 进行内容管理的Rails 4 项目中,如何更改默认数据库表名?

我想删除“comfy_”前缀,所以它们只是“cms_blocks”、“cms_pages”等......

4

1 回答 1

3
class ComfyWhateverElseMore < ActiveRecord::Base
  self.table_name = "whatever_you_wish"
end

作为参考,请考虑 api 文档

于 2015-07-27T14:59:06.360 回答