Sha256: 2cf2487149a98859d47555b700cbd196b4f6ac3121e6fe6058a81fd966d091c2
Contents?: true
Size: 687 Bytes
Versions: 16
Compression:
Stored size: 687 Bytes
Contents
class DropOpenidTables < ActiveRecord::Migration def self.up drop_table :open_id_authentication_associations drop_table :open_id_authentication_nonces end def self.down # see 003_create_openid_tables.rb create_table :open_id_authentication_associations, :force => true do |t| t.integer :issued t.integer :lifetime t.string :handle t.string :assoc_type t.binary :server_url t.binary :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
16 entries across 16 versions & 1 rubygems