Description:
update
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r684:11ce8d963587 - - 2 files changed: 29 inserted, 28 deleted

@@ -114,6 +114,7
114 @submission = Submission.joins(:problem).where(user_id: params[:id])
114 @submission = Submission.joins(:problem).where(user_id: params[:id])
115 @submission = @submission.where('problems.available = true') unless current_user.admin?
115 @submission = @submission.where('problems.available = true') unless current_user.admin?
116
116
117 +
117 range = 120
118 range = 120
118 @histogram = { data: Array.new(range,0), summary: {} }
119 @histogram = { data: Array.new(range,0), summary: {} }
119 @summary = {count: 0, solve: 0, attempt: 0}
120 @summary = {count: 0, solve: 0, attempt: 0}
@@ -15,12 +15,12
15
15
16 create_table "announcements", force: :cascade do |t|
16 create_table "announcements", force: :cascade do |t|
17 t.string "author", limit: 255
17 t.string "author", limit: 255
18 - t.text "body", limit: 65535
18 + t.text "body", limit: 16777215
19 t.boolean "published"
19 t.boolean "published"
20 - t.datetime "created_at", null: false
20 + t.datetime "created_at", null: false
21 - t.datetime "updated_at", null: false
21 + t.datetime "updated_at", null: false
22 - t.boolean "frontpage", default: false
22 + t.boolean "frontpage", default: false
23 - t.boolean "contest_only", default: false
23 + t.boolean "contest_only", default: false
24 t.string "title", limit: 255
24 t.string "title", limit: 255
25 t.string "notes", limit: 255
25 t.string "notes", limit: 255
26 end
26 end
@@ -50,19 +50,19
50 end
50 end
51
51
52 create_table "descriptions", force: :cascade do |t|
52 create_table "descriptions", force: :cascade do |t|
53 - t.text "body", limit: 65535
53 + t.text "body", limit: 16777215
54 t.boolean "markdowned"
54 t.boolean "markdowned"
55 - t.datetime "created_at", null: false
55 + t.datetime "created_at", null: false
56 - t.datetime "updated_at", null: false
56 + t.datetime "updated_at", null: false
57 end
57 end
58
58
59 create_table "grader_configurations", force: :cascade do |t|
59 create_table "grader_configurations", force: :cascade do |t|
60 t.string "key", limit: 255
60 t.string "key", limit: 255
61 t.string "value_type", limit: 255
61 t.string "value_type", limit: 255
62 t.string "value", limit: 255
62 t.string "value", limit: 255
63 - t.datetime "created_at", null: false
63 + t.datetime "created_at", null: false
64 - t.datetime "updated_at", null: false
64 + t.datetime "updated_at", null: false
65 - t.text "description", limit: 65535
65 + t.text "description", limit: 16777215
66 end
66 end
67
67
68 create_table "grader_processes", force: :cascade do |t|
68 create_table "grader_processes", force: :cascade do |t|
@@ -107,10 +107,10
107 t.integer "sender_id", limit: 4
107 t.integer "sender_id", limit: 4
108 t.integer "receiver_id", limit: 4
108 t.integer "receiver_id", limit: 4
109 t.integer "replying_message_id", limit: 4
109 t.integer "replying_message_id", limit: 4
110 - t.text "body", limit: 65535
110 + t.text "body", limit: 16777215
111 t.boolean "replied"
111 t.boolean "replied"
112 - t.datetime "created_at", null: false
112 + t.datetime "created_at", null: false
113 - t.datetime "updated_at", null: false
113 + t.datetime "updated_at", null: false
114 end
114 end
115
115
116 create_table "problems", force: :cascade do |t|
116 create_table "problems", force: :cascade do |t|
@@ -153,7 +153,7
153
153
154 create_table "sessions", force: :cascade do |t|
154 create_table "sessions", force: :cascade do |t|
155 t.string "session_id", limit: 255
155 t.string "session_id", limit: 255
156 - t.text "data", limit: 65535
156 + t.text "data", limit: 16777215
157 t.datetime "updated_at"
157 t.datetime "updated_at"
158 end
158 end
159
159
@@ -181,14 +181,14
181 t.integer "user_id", limit: 4
181 t.integer "user_id", limit: 4
182 t.integer "problem_id", limit: 4
182 t.integer "problem_id", limit: 4
183 t.integer "language_id", limit: 4
183 t.integer "language_id", limit: 4
184 - t.text "source", limit: 65535
184 + t.text "source", limit: 16777215
185 t.binary "binary", limit: 65535
185 t.binary "binary", limit: 65535
186 t.datetime "submitted_at"
186 t.datetime "submitted_at"
187 t.datetime "compiled_at"
187 t.datetime "compiled_at"
188 - t.text "compiler_message", limit: 65535
188 + t.text "compiler_message", limit: 16777215
189 t.datetime "graded_at"
189 t.datetime "graded_at"
190 t.integer "points", limit: 4
190 t.integer "points", limit: 4
191 - t.text "grader_comment", limit: 65535
191 + t.text "grader_comment", limit: 16777215
192 t.integer "number", limit: 4
192 t.integer "number", limit: 4
193 t.string "source_filename", limit: 255
193 t.string "source_filename", limit: 255
194 t.float "max_runtime", limit: 24
194 t.float "max_runtime", limit: 24
@@ -211,10 +211,10
211
211
212 create_table "test_pairs", force: :cascade do |t|
212 create_table "test_pairs", force: :cascade do |t|
213 t.integer "problem_id", limit: 4
213 t.integer "problem_id", limit: 4
214 - t.text "input", limit: 16777215
214 + t.text "input", limit: 4294967295
215 - t.text "solution", limit: 16777215
215 + t.text "solution", limit: 4294967295
216 - t.datetime "created_at", null: false
216 + t.datetime "created_at", null: false
217 - t.datetime "updated_at", null: false
217 + t.datetime "updated_at", null: false
218 end
218 end
219
219
220 create_table "test_requests", force: :cascade do |t|
220 create_table "test_requests", force: :cascade do |t|
@@ -225,13 +225,13
225 t.string "output_file_name", limit: 255
225 t.string "output_file_name", limit: 255
226 t.string "running_stat", limit: 255
226 t.string "running_stat", limit: 255
227 t.integer "status", limit: 4
227 t.integer "status", limit: 4
228 - t.datetime "updated_at", null: false
228 + t.datetime "updated_at", null: false
229 t.datetime "submitted_at"
229 t.datetime "submitted_at"
230 t.datetime "compiled_at"
230 t.datetime "compiled_at"
231 - t.text "compiler_message", limit: 65535
231 + t.text "compiler_message", limit: 16777215
232 t.datetime "graded_at"
232 t.datetime "graded_at"
233 t.string "grader_comment", limit: 255
233 t.string "grader_comment", limit: 255
234 - t.datetime "created_at", null: false
234 + t.datetime "created_at", null: false
235 t.float "running_time", limit: 24
235 t.float "running_time", limit: 24
236 t.string "exit_status", limit: 255
236 t.string "exit_status", limit: 255
237 t.integer "memory_usage", limit: 4
237 t.integer "memory_usage", limit: 4
@@ -246,8 +246,8
246 t.integer "score", limit: 4
246 t.integer "score", limit: 4
247 t.text "input", limit: 4294967295
247 t.text "input", limit: 4294967295
248 t.text "sol", limit: 4294967295
248 t.text "sol", limit: 4294967295
249 - t.datetime "created_at"
249 + t.datetime "created_at", null: false
250 - t.datetime "updated_at"
250 + t.datetime "updated_at", null: false
251 end
251 end
252
252
253 add_index "testcases", ["problem_id"], name: "index_testcases_on_problem_id", using: :btree
253 add_index "testcases", ["problem_id"], name: "index_testcases_on_problem_id", using: :btree
@@ -272,10 +272,10
272 t.boolean "activated", default: false
272 t.boolean "activated", default: false
273 t.datetime "created_at"
273 t.datetime "created_at"
274 t.datetime "updated_at"
274 t.datetime "updated_at"
275 + t.string "section", limit: 255
275 t.boolean "enabled", default: true
276 t.boolean "enabled", default: true
276 t.string "remark", limit: 255
277 t.string "remark", limit: 255
277 t.string "last_ip", limit: 255
278 t.string "last_ip", limit: 255
278 - t.string "section", limit: 255
279 end
279 end
280
280
281 add_index "users", ["login"], name: "index_users_on_login", unique: true, using: :btree
281 add_index "users", ["login"], name: "index_users_on_login", unique: true, using: :btree
You need to be logged in to leave comments. Login now