Show More
Commit Description:
fixed extra space in pre tag on problem discriptions
Commit Description:
fixed extra space in pre tag on problem discriptions
File last commit:
Show/Diff file:
Action:
db/migrate/20100124191250_create_codejom_statuses.rb | 15 lines | 289 B | text/x-ruby | RubyLexer |
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