Show More
Commit Description:
removed admin from score board
Commit Description:
removed admin from score board
References:
File last commit:
Show/Diff file:
Action:
db/migrate/20100124191250_create_codejom_statuses.rb
| 15 lines
| 289 B
| text/x-ruby
| RubyLexer
|
|
r219 | class CreateCodejomStatuses < ActiveRecord::Migration | ||
def self.up | ||||
create_table :codejom_statuses do |t| | ||||
t.integer :user_id | ||||
t.boolean :alive | ||||
t.integer :num_problems_passed | ||||
t.timestamps | ||||
end | ||||
end | ||||
def self.down | ||||
drop_table :codejom_statuses | ||||
end | ||||
end | ||||