Sha256: 11d9f4074aa098b9cda372424906ccae6b4cb14cafb3dd1e679eaa8456c04cd4

Contents?: true

Size: 289 Bytes

Versions: 2

Compression:

Stored size: 289 Bytes

Contents

class CreateAuthenticationMethods < ActiveRecord::Migration
  def self.up
    create_table :authentication_methods, :force => true do |t|
      t.string :environment
      t.boolean :active
      t.timestamps
    end
  end

  def self.down
    drop_table :authentication_methods
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
spree_social-1.1 db/migrate/20101207152830_create_authentication_methods.rb
spree_social-1.0.2 db/migrate/20101207152830_create_authentication_methods.rb