In my discount_codes
branch I created a migration that adds a discount_code_id
attribute to the Job model. When I switch back to the master
branch, open a console, and type Job
, I'm still seeing discount_code_id
as an attribute.
Because I'm back on the master
branch, the migrations that added this attribute aren't there and schema.rb
doesn't list it as a column in the Job table.
Can someone explain why I'm still seeing the new attribute in the console?? This happens despite opening a new console.