I should note before any of this, that my friend pulled from my git repo and it works perfectly for him.
The database has the attribute, and the attr_accessible
is set. But Rails is throwing this error undefined method 'is_free' for #<Account:0x007fb53bc91ec0>
when trying to access it in view.
Database for ref: t.boolean "is_free", :default => false
The other really bizarre thing is you can see the attribute exists in console.
1.9.3p194 :005 > a.is_free
=> false
I have dropped, created and re-migrated the database without success. I have deleted the entire folder, re-cloned from git and re-created database without success.
I have no idea what is going on.. it's just acting haywire. Please help, I'm losing my mind.