1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2025-12-10 08:46:41 +01:00
projekteuler/db/migrate/20141130153941_create_problems.rb

11 lines
187 B
Ruby

class CreateProblems < ActiveRecord::Migration
def change
create_table :problems do |t|
t.string :title
t.text :content
t.timestamps null: true
end
end
end