public
Description: This contains various plugins for Feather
Clone URL: git://github.com/eldiablo/feather-plugins.git
Search Repo:
Click here to lend your support to: feather-plugins and make a donation at www.pledgie.com !
Updated feed_setting model to autoincrement ID, so .new will work
fujin (author)
Fri Jul 04 01:39:31 -0700 2008
commit  5a94dc526d85ca6272d1a558fceaac2d4804c4e0
tree    0bc1614e7e3be83d8663a8f93c8866883b431569
parent  bcd31beb6f1c90f02bcd7026f4a18680611c7284
...
1
2
3
4
 
5
6
7
...
13
14
15
16
17
 
...
1
2
3
 
4
5
6
7
...
13
14
15
 
16
17
0
@@ -1,7 +1,7 @@
0
 class FeedSetting
0
   include DataMapper::Resource
0
   
0
- property :id, Integer, :key => true
0
+ property :id, Integer, :serial => true
0
   property :article_count, Integer
0
   property :comment_count, Integer
0
   property :external_feed_url, String, :length => 255
0
@@ -13,4 +13,4 @@ class FeedSetting
0
     feed_settings = FeedSetting.create(:article_count => 15, :comment_count => 15, :external_feed_url => nil) if feed_settings.nil?
0
     feed_settings
0
   end
0
-end
0
\ No newline at end of file
0
+end

Comments

    No one has commented yet.