Sha256: ff2da1b3ac0dab71ccd9c67fd4ea3a63539bfa235846f16c6aec263b506bab42
Contents?: true
Size: 558 Bytes
Versions: 7
Compression:
Stored size: 558 Bytes
Contents
# This migration comes from spree (originally 20091015110842) class AddOpenIdAuthenticationTables < ActiveRecord::Migration def change 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 end
Version data entries
7 entries across 7 versions & 2 rubygems