>  Q&A  >  본문

ruby - DataMapper怎么指定表名?

初学DataMapper,建了以下类:

rubyclass Node
  include DataMapper::Resource

  property :nid,         Serial
  property :title,       String
end

但报错:
~ Table 'NWST.nodes' doesn't exist (code: 1146, sql state: 42S02, query: SELECT nid, title FROM nodes ORDER BY nid, uri: mysql:root@127.0.0.1/NWST?scheme=mysql&user=root&password=&host=127.0.0.1&port=&path=/NWST&query=&fragment=&adapter=mysql)

这是因为表名是node,DM自动改为复数名,如何才能指定表名?

天蓬老师天蓬老师2758일 전728

모든 응답(1)나는 대답할 것이다

  • 巴扎黑

    巴扎黑2017-04-24 09:12:15

    DM은 자동으로 복수형 이름으로 변경됩니다. 테이블 이름은 어떻게 지정하나요?

    회신하다
    0
  • 취소회신하다