1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-27 10:38:50 +01:00
Files
projekteuler/db/migrate/20141130153941_create_problems.rb
2014-11-30 16:43:09 +01:00

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