amatriain/feedbunch

View on GitHub
FeedBunch-app/db/migrate/20140922163545_add_show_entry_tour_to_users.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddShowEntryTourToUsers < ActiveRecord::Migration[5.2]
  def up
    add_column :users, :show_entry_tour, :boolean, default: true, null: true

    User.all.each do |u|
      u.update_column :show_entry_tour, true
    end

    change_column_null :users, :show_entry_tour, false
  end

  def down
    remove_column :users, :show_entry_tour
  end
end