Description:
fix logins user_id from string to integer
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r504:83c7ff482214 - - 2 files changed: 31 inserted, 27 deleted
@@ -252,4 +252,7 | |||||
|
252 | end |
|
252 | end |
|
253 | end |
|
253 | end |
|
254 |
|
254 | ||
|
|
255 | + def cheat_report | ||
|
|
256 | + end | ||
|
|
257 | + | ||
|
255 | end |
|
258 | end |
@@ -11,16 +11,16 | |||||
|
11 | # |
|
11 | # |
|
12 | # It's strongly recommended to check this file into your version control system. |
|
12 | # It's strongly recommended to check this file into your version control system. |
|
13 |
|
13 | ||
|
14 |
- ActiveRecord::Schema.define(:version => 20150 |
|
14 | + ActiveRecord::Schema.define(:version => 20150503164846) do |
|
15 |
|
15 | ||
|
16 | create_table "announcements", :force => true do |t| |
|
16 | create_table "announcements", :force => true do |t| |
|
17 | t.string "author" |
|
17 | t.string "author" |
|
18 | - t.text "body" |
|
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" |
|
24 | t.string "title" |
|
25 | t.string "notes" |
|
25 | t.string "notes" |
|
26 | end |
|
26 | end |
@@ -50,19 +50,19 | |||||
|
50 | end |
|
50 | end |
|
51 |
|
51 | ||
|
52 | create_table "descriptions", :force => true do |t| |
|
52 | create_table "descriptions", :force => true do |t| |
|
53 | - t.text "body" |
|
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 => true do |t| |
|
59 | create_table "grader_configurations", :force => true do |t| |
|
60 | t.string "key" |
|
60 | t.string "key" |
|
61 | t.string "value_type" |
|
61 | t.string "value_type" |
|
62 | t.string "value" |
|
62 | t.string "value" |
|
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" |
|
65 | + t.text "description", :limit => 16777215 |
|
66 | end |
|
66 | end |
|
67 |
|
67 | ||
|
68 | create_table "grader_processes", :force => true do |t| |
|
68 | create_table "grader_processes", :force => true do |t| |
@@ -87,7 +87,7 | |||||
|
87 | end |
|
87 | end |
|
88 |
|
88 | ||
|
89 | create_table "logins", :force => true do |t| |
|
89 | create_table "logins", :force => true do |t| |
|
90 |
- t. |
|
90 | + t.integer "user_id" |
|
91 | t.string "ip_address" |
|
91 | t.string "ip_address" |
|
92 | t.datetime "created_at", :null => false |
|
92 | t.datetime "created_at", :null => false |
|
93 | t.datetime "updated_at", :null => false |
|
93 | t.datetime "updated_at", :null => false |
@@ -97,10 +97,10 | |||||
|
97 | t.integer "sender_id" |
|
97 | t.integer "sender_id" |
|
98 | t.integer "receiver_id" |
|
98 | t.integer "receiver_id" |
|
99 | t.integer "replying_message_id" |
|
99 | t.integer "replying_message_id" |
|
100 | - t.text "body" |
|
100 | + t.text "body", :limit => 16777215 |
|
101 | t.boolean "replied" |
|
101 | t.boolean "replied" |
|
102 | - t.datetime "created_at", :null => false |
|
102 | + t.datetime "created_at", :null => false |
|
103 | - t.datetime "updated_at", :null => false |
|
103 | + t.datetime "updated_at", :null => false |
|
104 | end |
|
104 | end |
|
105 |
|
105 | ||
|
106 | create_table "problems", :force => true do |t| |
|
106 | create_table "problems", :force => true do |t| |
@@ -142,7 +142,7 | |||||
|
142 |
|
142 | ||
|
143 | create_table "sessions", :force => true do |t| |
|
143 | create_table "sessions", :force => true do |t| |
|
144 | t.string "session_id" |
|
144 | t.string "session_id" |
|
145 | - t.text "data" |
|
145 | + t.text "data", :limit => 16777215 |
|
146 | t.datetime "updated_at" |
|
146 | t.datetime "updated_at" |
|
147 | end |
|
147 | end |
|
148 |
|
148 | ||
@@ -163,14 +163,14 | |||||
|
163 | t.integer "user_id" |
|
163 | t.integer "user_id" |
|
164 | t.integer "problem_id" |
|
164 | t.integer "problem_id" |
|
165 | t.integer "language_id" |
|
165 | t.integer "language_id" |
|
166 | - t.text "source" |
|
166 | + t.text "source", :limit => 16777215 |
|
167 | t.binary "binary" |
|
167 | t.binary "binary" |
|
168 | t.datetime "submitted_at" |
|
168 | t.datetime "submitted_at" |
|
169 | t.datetime "compiled_at" |
|
169 | t.datetime "compiled_at" |
|
170 | - t.text "compiler_message" |
|
170 | + t.text "compiler_message", :limit => 16777215 |
|
171 | t.datetime "graded_at" |
|
171 | t.datetime "graded_at" |
|
172 | t.integer "points" |
|
172 | t.integer "points" |
|
173 | - t.text "grader_comment" |
|
173 | + t.text "grader_comment", :limit => 16777215 |
|
174 | t.integer "number" |
|
174 | t.integer "number" |
|
175 | t.string "source_filename" |
|
175 | t.string "source_filename" |
|
176 | t.float "max_runtime" |
|
176 | t.float "max_runtime" |
@@ -191,10 +191,10 | |||||
|
191 |
|
191 | ||
|
192 | create_table "test_pairs", :force => true do |t| |
|
192 | create_table "test_pairs", :force => true do |t| |
|
193 | t.integer "problem_id" |
|
193 | t.integer "problem_id" |
|
194 |
- t.text "input", :limit => |
|
194 | + t.text "input", :limit => 2147483647 |
|
195 |
- t.text "solution", :limit => |
|
195 | + t.text "solution", :limit => 2147483647 |
|
196 | - t.datetime "created_at", :null => false |
|
196 | + t.datetime "created_at", :null => false |
|
197 | - t.datetime "updated_at", :null => false |
|
197 | + t.datetime "updated_at", :null => false |
|
198 | end |
|
198 | end |
|
199 |
|
199 | ||
|
200 | create_table "test_requests", :force => true do |t| |
|
200 | create_table "test_requests", :force => true do |t| |
@@ -205,13 +205,13 | |||||
|
205 | t.string "output_file_name" |
|
205 | t.string "output_file_name" |
|
206 | t.string "running_stat" |
|
206 | t.string "running_stat" |
|
207 | t.integer "status" |
|
207 | t.integer "status" |
|
208 | - t.datetime "updated_at", :null => false |
|
208 | + t.datetime "updated_at", :null => false |
|
209 | t.datetime "submitted_at" |
|
209 | t.datetime "submitted_at" |
|
210 | t.datetime "compiled_at" |
|
210 | t.datetime "compiled_at" |
|
211 | - t.text "compiler_message" |
|
211 | + t.text "compiler_message", :limit => 16777215 |
|
212 | t.datetime "graded_at" |
|
212 | t.datetime "graded_at" |
|
213 | t.string "grader_comment" |
|
213 | t.string "grader_comment" |
|
214 | - t.datetime "created_at", :null => false |
|
214 | + t.datetime "created_at", :null => false |
|
215 | t.float "running_time" |
|
215 | t.float "running_time" |
|
216 | t.string "exit_status" |
|
216 | t.string "exit_status" |
|
217 | t.integer "memory_usage" |
|
217 | t.integer "memory_usage" |
@@ -239,6 +239,7 | |||||
|
239 | t.boolean "activated", :default => false |
|
239 | t.boolean "activated", :default => false |
|
240 | t.datetime "created_at" |
|
240 | t.datetime "created_at" |
|
241 | t.datetime "updated_at" |
|
241 | t.datetime "updated_at" |
|
|
242 | + t.string "section" | ||
|
242 | t.boolean "enabled", :default => true |
|
243 | t.boolean "enabled", :default => true |
|
243 | t.string "remark" |
|
244 | t.string "remark" |
|
244 | end |
|
245 | end |
You need to be logged in to leave comments.
Login now