On 8/24/07, eggie5 <eggie5 / gmail.com> wrote: > I have a symbol that I need to name with a number as the first > character, but that's invalid ruby syntax. e.g.: > > t.column :_3g2, :integer You can quote the symbol ... t.column :"3g2", :integer Blessings, TwP