to_sql()
public
Returns a String whose contents are the column
definitions concatenated together. This string can then be prepended and
appended to to generate the final SQL to create the table.
Show source
def to_sql
@columns.map { |c| c.to_sql } * ', '
end