mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 00:36:42 +01:00
8 lines
152 B
Ruby
8 lines
152 B
Ruby
class CreateProblemsAgain < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :problems do |t|
|
|
t.timestamps null: true
|
|
end
|
|
end
|
|
end
|