You could either go with:
<%= day_form.text_area :hatch, cols: 30, rows: 10 %>
or you can specify both with the size attribute:
<%= day_form.text_area :hatch, size: "30x10" %>
You could either go with:
<%= day_form.text_area :hatch, cols: 30, rows: 10 %>
or you can specify both with the size attribute:
<%= day_form.text_area :hatch, size: "30x10" %>