andela/eventx

View on GitHub
db/migrate/20150920143715_remove_payment_status_from_booking.rb

Summary

Maintainability
A
0 mins
Test Coverage
class RemovePaymentStatusFromBooking < ActiveRecord::Migration
  def change
    remove_column :bookings, :payment_status, :boolean
    add_column :bookings, :payment_status, :integer
  end
end