Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
update migration
Commit Description:
update migration
class CreateSubmissions < ActiveRecord :: Migration [ 4 . 2 ]
def self . up
create_table :submissions , options : "ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci" do | t |
t . column :user_id , :integer
t . column :problem_id , :integer
t . column :language_id , :integer
t . column :source , :text
t . column :binary , :binary
t . column :submitted_at , :datetime
t . column :compiled_at , :datetime
t . column :compiler_message , :text
t . column :graded_at , :datetime
t . column :points , :integer
t . column :grader_comment , :text
end
end
def self . down
drop_table :submissions
end
end
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings