I'm trying to add a "sticky" option on my forum topics. This is how my migration looks like
def self.up
add_column :topics, :sticky, :boolean, :null => false, :default => false
end
def self.down
remove_column :topics, :sticky
end
This works perfect locally on mysql, but when I push the changes to heroku (which uses PostgreSQL), this is what I get when using the console
>> t.sticky
=> "f"
>> t.sticky.class
=> String
>> t.sticky = true
=> true
>> t.sticky.class
=> TrueClass
Why is the default value of this property a String?
Edit: And if I save the object, it doesn't change the sticky property, i.e. it's still "f".
In psql, booleans are displayed as t
or f
. Depending on the DB driver, these get converted to booleans or left in their string representation.
The PDO driver in PHP does the same thing. (Or used to, anyway... I vaguely recall it no longer does in its latest version.)
Unless you find a bug in RoR or the database driver, as suggested by Denis, you may define (override) the read accessor as:
def sticky
! [false, nil, 'f'].include?( self[:sticky] )
end
This will convert known 'false' values to real ruby booleans.
I recall there were at least two gems to connect to PostgreSQL databases. Maybe you can use the other one?
And are you sure that the column in the database is not defined as String? I know that in your migration it's boolean, but maybe something somewhere went wrong?
I'm not sure what the problem was, but I just rolled back the migration and ran it again, and it worked this time. Just putting this here in case someone else encounters a similar problem.
Thanks for your help guys.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With