Displaying 1 result from an estimated 1 matches for "taxa_ord".
Did you mean:
taxa_order
2009 Feb 02
2
looking for help with NoMethodError: undefined method `key?' for #<String:0x4795488>
...uby/gems/1.8/gems/activesupport-2.2.2/
lib/active_support/testing/setup_and_teardown.rb:58:in `run''
---------------------------------
My entity model is dead simple at the moment-
class Entity < ActiveRecord::Base
end
My DB table (entities) has these fields-
id
created_at
updated_at
taxa_order
taxa_family
taxa_genus
taxa_species
common_name
short_description
description
it was created using this migration code-
create_table :entities do |t|
t.timestamps
t.column "taxa_order", :string, :limit => 127, :default
=> "", :null => false...