Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby

Storing check boxes in database in Rails

Hi,

I was just wondering if there was a way of storing check boxes in rails, preferably in postgresql. I know it would use a BOOLEAN value, but how do I "hook up" the check box to the database.

Thanks.

2 Answers

Brandon Barrette
Brandon Barrette
20,485 Points

It's like any other input value. I would set the default value to false, then in your form:

<%= f.label :completed %>
<%= f.check_box :completed %>

Rails will do the magic and update the database accordingly. See more here:

http://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper.html#method-i-check_box

Thanks Brandon!