Sha256: c968cbd931fb1d9e38b32971c3c69d60e56f7110425c18f3c0dc8a66d1f20157
Contents?: true
Size: 601 Bytes
Versions: 109
Compression:
Stored size: 601 Bytes
Contents
class AddOpenIdAuthenticationTables < ActiveRecord::Migration def self.up create_table :open_id_authentication_associations, :force => true do |t| t.integer :issued, :lifetime t.string :handle, :assoc_type t.binary :server_url, :secret end create_table :open_id_authentication_nonces, :force => true do |t| t.integer :timestamp, :null => false t.string :server_url, :null => true t.string :salt, :null => false end end def self.down drop_table :open_id_authentication_associations drop_table :open_id_authentication_nonces end end
Version data entries
109 entries across 97 versions & 14 rubygems