Last active
August 29, 2015 14:17
-
-
Save jaturken/34f9a896f4fa363d7bd6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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