search for: hashed_pa

Displaying 2 results from an estimated 2 matches for "hashed_pa".

Did you mean: hashed_pas
2005 Dec 17
1
lost in an ActiveRecord::StatementInvalid
...); cid name type notnull dflt_value pk ---------- ---------- ---------- ---------- ---------- ---------- 0 id integer 0 1 1 name varchar(10 99 0 2 hashed_pas char(40) 0 0 And the model class is this: require ''digest/sha1'' class User < ActiveRecord::Base attr_accessor :password attr_accessible :name, :password validates_uniqueness_of :name validates_presence_of :name, :password...
2006 Feb 22
15
Fixtures and Relationships
In my daily development, I migrate back and forth between versions, and often do: rake load_fixtures... ... in order to populate my development database with fun data. Now, with any HABTM relationship, there are failures, as there is no way to say "which" fixtures to load first. Within an actual functional or unit test case, you could simply load them in the proper order, but