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:
Corrected limits of database strings.
dbloete (author)
Fri Apr 25 00:26:07 -0700 2008
commit  3f7b3c65dfcec3d5b6596b9affcbd26d5659b668
tree    8506ec88b93bff3d04b5c552c37f10981242377d
parent  aea5cb03125095c5e8f7b54405a7386abe5d85ed
...
60
61
62
63
64
 
 
65
66
67
...
308
309
310
311
 
312
313
314
...
702
703
704
705
706
 
 
707
708
709
...
60
61
62
 
 
63
64
65
66
67
...
308
309
310
 
311
312
313
314
...
702
703
704
 
 
705
706
707
708
709
0
@@ -60,8 +60,8 @@ class CreateInitialSchema < ActiveRecord::Migration
0
     add_index :open_id_requests, :token, :unique => true
0
     
0
     create_table :countries, :force => true do |t|
0
- t.string :name, :null => false, :limit => 40
0
- t.string :code, :null => false, :limit => 2
0
+ t.string :name, :null => false, :limit => 60
0
+ t.string :code, :null => false, :limit => 5
0
     end
0
     
0
     add_index :countries, :code, :unique => true
0
@@ -308,7 +308,7 @@ class CreateInitialSchema < ActiveRecord::Migration
0
       { :name => 'Zimbabwe', :code => 'ZW' }])
0
     
0
     create_table :timezones do |t|
0
- t.string :name, :null => false, :limit => 40
0
+ t.string :name, :null => false, :limit => 60
0
     end
0
     
0
     add_index :timezones, :name, :unique => true
0
@@ -702,8 +702,8 @@ class CreateInitialSchema < ActiveRecord::Migration
0
       { :name => 'Pacific/Wallis' }])
0
       
0
     create_table :languages do |t|
0
- t.string :name, :null => false, :limit => 40
0
- t.string :code, :null => false, :limit => 2
0
+ t.string :name, :null => false, :limit => 60
0
+ t.string :code, :null => false, :limit => 5
0
     end
0
 
0
     Language.create([

Comments

    No one has commented yet.