search for: updated_

Displaying 4 results from an estimated 4 matches for "updated_".

Did you mean: updated
2006 Jan 13
0
Controller part of in-place editing
...;' + link.id.to_s) %> <td> <div id="<%= ''date_'' + link.id.to_s -%>"><%= link.date %></div></td> <%= in_place_editor (''date_'' + link.id.to_s) %> <td> <div id="<%= ''updated_'' + link.id.to_s -%>"><%= link.updated %></div></td> <%= in_place_editor (''updated_'' + link.id.to_s) %> <td><%= link_to ''Destroy'', { :action => ''destroy'', :id => link }, :conf...
2006 Jan 20
11
Userstamp Plugin
...m http://www.delynnberry.com A dump of the Readme file is contained below -- Userstamp Plugin (v 1.0) ======================== Overview -------- The Userstamp Plugin extends ActiveRecord::Base( http://api.rubyonrails.com/classes/ActiveRecord/Base.html) to add automatic updating of created_by and updated_by attributes of your models in much the same way that the ActiveRecord::Timestamp( http://api.rubyonrails.com/classes/ActiveRecord/Timestamp.html) module updates created_(at/on) and updated_(at/on) attributes. The module requires that your application''s user object (User by default) conta...
2005 Dec 31
0
Disabling updated_at/updated_on
Hello Is it possible to disable the update of "updated_(at|on)" columns when using acts_as_list methods for example ? Thanks
2006 Apr 01
5
Triple relationship
Hi list, I need to represent a relationship between three tables: Tags (id, name) Users (id, name, email, ... ) Documents (id, title, ... ) I created a forth table called Assignments(id, tag-id, user-id, document-id, date). I have couple of questions: Should I use belongs-to and has-many to capture this? If so, How can I do that? should I have the id as the primary key in Assignment table or