Files
old-rijeci/db/migrate/20131206040324_create_solutions.rb
2013-12-09 03:23:49 +01:00

12 lines
204 B
Ruby

class CreateSolutions < ActiveRecord::Migration
def change
create_table :solutions do |t|
t.integer :number
t.string :time
t.string :username
t.timestamps
end
end
end