Displaying 1 result from an estimated 1 matches for "addphonetoticket".
Did you mean:
addphonetotickets
2011 Aug 07
3
New field does now show in browser
Hi all
I just added a new field phone to form _form.html.erb created with:
rails generate migration AddPhoneTotickets phone:string
added with rake migraiton
and the new field does not show in the browser
new
<div class="field">
<%= f.label :phone %><br />
<%= f.text_field :phone %>
</div>
old
<p>
<%= f.label :phone %><br />
&l...