1 class AddOpenIdAuthenticationTables < ActiveRecord::Migration
3 create_table :open_id_authentication_associations, :force => true do |t|
4 t.integer :issued, :lifetime
5 t.string :handle, :assoc_type
6 t.binary :server_url, :secret
9 create_table :open_id_authentication_nonces, :force => true do |t|
10 t.integer :timestamp, :null => false
11 t.string :server_url, :null => true
12 t.string :salt, :null => false
17 drop_table :open_id_authentication_associations
18 drop_table :open_id_authentication_nonces