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

Version Path
spree_mercado_pago_payment_method-0.0.2 spec/dummy/db/migrate/20121121030145_add_open_id_authentication_tables.spree.rb
spree_mercado_pago_payment_method-0.1.1 spec/dummy/db/migrate/20121121030145_add_open_id_authentication_tables.spree.rb
spree_mercado_pago_payment_method-0.1.0 spec/dummy/db/migrate/20121121030145_add_open_id_authentication_tables.spree.rb
datashift_spree-0.3.0 spec/sandbox/db/migrate/20121023154364_add_open_id_authentication_tables.spree.rb
datashift_spree-0.2.1 spec/sandbox/db/migrate/20121015151157_add_open_id_authentication_tables.spree.rb
datashift_spree-0.2.0 spec/sandbox/db/migrate/20120925192725_add_open_id_authentication_tables.spree.rb
datashift_spree-0.1.0 spec/sandbox/db/migrate/20120918081456_add_open_id_authentication_tables.spree.rb