Skip to content

Instantly share code, notes, and snippets.

@jaturken
Last active August 29, 2015 14:17
Show Gist options
  • Save jaturken/34f9a896f4fa363d7bd6 to your computer and use it in GitHub Desktop.
Save jaturken/34f9a896f4fa363d7bd6 to your computer and use it in GitHub Desktop.
# Not so good
i=0
while i<=colnum-1 do #adding the columns
database.alter_table tabname.to_sym do
add_column colnames[i], String
i+=1
end
end
# Better
colnames.map do |colname| #adding the columns
database.alter_table tabname.to_sym do
add_column colname, String
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment