This commit is contained in:
parent
698dfdab4a
commit
4a5a602a6e
13
db/schema.rb
13
db/schema.rb
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended to check this file into your version control system.
|
# 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|
|
create_table "activities", :force => true do |t|
|
||||||
t.integer "act_id", :null => false
|
t.integer "act_id", :null => false
|
||||||
|
@ -334,6 +334,17 @@ ActiveRecord::Schema.define(:version => 20160427075457) do
|
||||||
t.boolean "diff_all"
|
t.boolean "diff_all"
|
||||||
end
|
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|
|
create_table "comments", :force => true do |t|
|
||||||
t.string "commented_type", :limit => 30, :default => "", :null => false
|
t.string "commented_type", :limit => 30, :default => "", :null => false
|
||||||
t.integer "commented_id", :default => 0, :null => false
|
t.integer "commented_id", :default => 0, :null => false
|
||||||
|
|
Loading…
Reference in New Issue