On Jan 9, 11:16 pm, codeinnova <[email protected]> wrote: > So my question really is, how can i make rails to accept more values > without changing the type to something other than tinyint(1)? And why > this weirdness?
Mysql doesn't have an actual boolean type so rails usually uses tinyint (1) columns instead. There is a setting inside the mysql_adapter called emulate_booleans which you could try turning off but that would apply to all tables. Fred
-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

