initial commit

This commit is contained in:
Senad Uka
2013-12-09 03:23:49 +01:00
parent 9582c13e0c
commit e8751fa215
204 changed files with 6675 additions and 41 deletions

View File

@@ -0,0 +1,11 @@
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