public
Description: A Ruby on Rails-based OpenID server for all ya identity providers out there. It is pretty close to the current OpenID specifications and supports SReg, AX (only fetch requests, yet) and PAPE
Homepage: http://dennisbloete.de/projects/masquerade/
Clone URL: git://github.com/dbloete/masquerade.git
Search Repo:
Fixed bug in migration (type error occured when using postgres)
dbloete (author)
Thu Apr 24 06:40:12 -0700 2008
commit  1f9c844a65a72eb9fe091a51966730643cb1f3e9
tree    4a26d090e64e04b8f1d7716fc7aea34005e06318
parent  2a9bcd781d39146e59aa89323a080152a1688290
...
19
20
21
22
 
23
24
25
...
19
20
21
 
22
23
24
25
0
@@ -19,7 +19,7 @@ class CreateInitialSchema < ActiveRecord::Migration
0
       t.string :nickname, :email, :fullname, :postcode, :country, :language, :timezone
0
       t.string :gender, :limit => 1
0
       t.date :dob
0
- t.boolean :deletable, :null => false, :default => 1
0
+ t.boolean :deletable, :null => false, :default => true
0
       t.timestamps
0
     end
0
     

Comments

    No one has commented yet.