Show More
Commit Description:
- clean up link to problem stat and user stat...
Commit Description:
- clean up link to problem stat and user stat (grafted from 45d1e12e9794a23a5431222fe2f4c7461d73a529)
File last commit:
Show/Diff file:
Action:
db/migrate/20100124054458_create_user_contest_stats.rb | 14 lines | 264 B | text/x-ruby | RubyLexer |
Jittat Fakcharoenphol
added individual contest mode
r217 class CreateUserContestStats < ActiveRecord::Migration
def self.up
create_table :user_contest_stats do |t|
t.integer :user_id
t.timestamp :started_at
t.timestamps
end
end
def self.down
drop_table :user_contest_stats
end
end