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

Version Path
MyCommerceapi-1.0.0 api/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerceapi-1.0.0 sandbox/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerceapi-1.0.0 promo/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerceapi-1.0.0 dash/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerceapi-1.0.0 core/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerceapi-1.0.0 auth/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerceapi-1.0.0 core/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerce-0.0.3 core/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerce-0.0.3 dash/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerce-0.0.3 sandbox/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerce-0.0.3 promo/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerce-0.0.3 api/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerce-0.0.3 auth/spec/test_app/db/migrate/20091015110842_add_open_id_authentication_tables.rb
MyCommerce-0.0.3 core/db/migrate/20091015110842_add_open_id_authentication_tables.rb
rfcommerce_sandbox-0.0.3 db/migrate/20091015110842_add_open_id_authentication_tables.rb
rfcommerce_core-0.0.3 db/migrate/20091015110842_add_open_id_authentication_tables.rb
spree_core-0.60.6 db/migrate/20091015110842_add_open_id_authentication_tables.rb
spree_core-0.70.5 db/migrate/20091015110842_add_open_id_authentication_tables.rb
spree_core-0.70.4 db/migrate/20091015110842_add_open_id_authentication_tables.rb
spree_core-0.60.5 db/migrate/20091015110842_add_open_id_authentication_tables.rb