alamodey
alamodey

Reputation: 14938

What's wrong with this class?

For some reason, one of my Ruby on Rails classes produces this sort of error everytime I try to call any method on it:

undefined method `create' for Thread:Class

I created this class just like any other, using ./script/generate model Thread, and then migrating it. So why is it acting so strange?

Upvotes: 0

Views: 128

Answers (1)

ssmithstone
ssmithstone

Reputation: 1209

There is already a Thread class in ruby maybe its a name clash

Upvotes: 2

Related Questions