मुझे भी यही समस्या है और मैंने पाया कि मेरे माइग्रेशन में मेरे पास बहुवचन रूप में टेबल नाम नहीं हैं:
उदाहरण के लिए:
class CreatePosts ActiveRecord::Migration
def change
create_table :posts do |t|
t.string :source
t.string :destination
t.datetime :time
t.timestamps
end
end
end
मेरे पास create_table :post
. है , लेकिन जब मैं इसे create_table :posts
. में बदलता हूं .यह काम करना शुरू कर देता है!!!!