Sha256: f880fd747017b20c9ef7ba0d0ab581ea73a14b35b9456f47d2b66126da4cc24f

Contents?: true

Size: 238 Bytes

Versions: 4

Compression:

Stored size: 238 Bytes

Contents

# This migration comes from spree (originally 20101103212716)
class DropAnonymousFieldForUser < ActiveRecord::Migration
  def up
    remove_column :users, :anonymous
  end

  def down
    add_column :users, :anonymous, :boolean
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
datashift_spree-0.3.0 spec/sandbox/db/migrate/20121023154431_drop_anonymous_field_for_user.spree.rb
datashift_spree-0.2.1 spec/sandbox/db/migrate/20121015151224_drop_anonymous_field_for_user.spree.rb
datashift_spree-0.2.0 spec/sandbox/db/migrate/20120925192792_drop_anonymous_field_for_user.spree.rb
datashift_spree-0.1.0 spec/sandbox/db/migrate/20120918081523_drop_anonymous_field_for_user.spree.rb