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.
# File activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb, line 273
def to_sql
@columns.map { |c| c.to_sql } * ', '
end