Sha256: 46e9364121e144f39f9d1ddfb803e898bfc6970699d22cb6d1627c6878b94e87
Contents?: true
Size: 660 Bytes
Versions: 13
Compression:
Stored size: 660 Bytes
Contents
# frozen_string_literal: true class CreateOpenidTables < ActiveRecord::Migration[4.2] def self.up 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 def self.down drop_table :open_id_authentication_associations drop_table :open_id_authentication_nonces end end
Version data entries
13 entries across 13 versions & 1 rubygems