mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 16:46:42 +01:00
6 lines
136 B
Ruby
6 lines
136 B
Ruby
class RenameProblemsTableToTranslations < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_table :problems, :translations
|
|
end
|
|
end
|