mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
11 lines
192 B
Ruby
11 lines
192 B
Ruby
class CreateProblems < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :problems do |t|
|
|
t.string :title
|
|
t.text :content
|
|
|
|
t.timestamps null: true
|
|
end
|
|
end
|
|
end
|