This commit is contained in:
cxt 2016-04-28 14:46:27 +08:00
parent 698dfdab4a
commit 4a5a602a6e
1 changed files with 12 additions and 1 deletions

View File

@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
ActiveRecord::Schema.define(:version => 20160427075457) do
ActiveRecord::Schema.define(:version => 20160427061847) do
create_table "activities", :force => true do |t|
t.integer "act_id", :null => false
@ -334,6 +334,17 @@ ActiveRecord::Schema.define(:version => 20160427075457) do
t.boolean "diff_all"
end
create_table "code_tests", :force => true do |t|
t.integer "homework_id"
t.integer "wait_time", :default => 0
t.integer "language"
t.integer "status"
t.integer "time_used", :default => 0
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.integer "student_work_id", :default => 0
end
create_table "comments", :force => true do |t|
t.string "commented_type", :limit => 30, :default => "", :null => false
t.integer "commented_id", :default => 0, :null => false