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