mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 00:36:42 +01:00
8 lines
236 B
Ruby
8 lines
236 B
Ruby
class AddOriginalDataToProblems < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :problems, :pulled_at, :datetime
|
|
add_column :problems, :original_title, :string
|
|
add_column :problems, :original_content, :text
|
|
end
|
|
end
|