I have a model columns, and here's the table data:
class CreateComments < ActiveRecord::Migration def self.up create_table :comments do |t| t.column :title, :string, :limit => 100 t.column :comment, :text t.column :meeting_id, :integer t.column :user_id, :integer t.column :posted_at, :datetime t.column :comment_id, :integer end end
def self.down drop_table :comments end end
Then, I did script/generate scaffold comment comment
It created all the files. However, when I try to "create new" it throws an error: http://rafb.net/paste/results/zaAxQb54.html
I'm totally bewildered. What could be causing this error? There are no validations in the model.
Thanks, Ben Lisbakken