public
Description: Journaling / Blogging Application
Homepage: http://deluuxjournal.heroku.com
Clone URL: git://github.com/notphil/deluuxjournal.git
Changed summary limit to 250 so we can use varchar(255)
notphil (author)
Tue Jul 15 20:32:25 -0700 2008
commit  8af153847969705c1e8fdf86bcea516e92061447
tree    2016aae2189914d6a855bfecdf629284314c69dd
parent  9f30dcebe1ed6949d866e1d1f31cb7370ee560dd
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 class Note < ActiveRecord::Base
0
 
0
- def self.max_summary_length() 300; end
0
+ def self.max_summary_length() 250; end
0
 
0
   def self.find_by(user_id, type = "deluux")
0
     self.find(:all, :conditions => ["user_id = ? AND user_type = ?", user_id, type],

Comments

    No one has commented yet.