私は、RubyinRailsを使用して単純なアプリケーションを作成しようとしています。私はこの足場を作成しました:
rails generate scaffold Pic title:string content:blob description:text
そして、dbを移行しようとすると、次のrake db:migrate
エラーが発生します。
rake aborted!
An error has occurred, this and all later migrations canceled:
undefined method `blob' for #<ActiveRecord::ConnectionAdapters::TableDefinition:0xb74f8ec4>
私が書くとき、それtext
の代わりに言うblob
ことは正常に機能します。では、何が問題なのblob
でしょうか。