Update schema.rb

This commit is contained in:
Maximilian Grundke
2016-03-02 12:17:20 +01:00
parent f17ae9ad2f
commit 551552279b

View File

@ -91,6 +91,8 @@ ActiveRecord::Schema.define(version: 20160204111716) do
t.boolean "hide_file_tree" t.boolean "hide_file_tree"
end end
add_index "exercises", ["execution_environment_id"], name: "test3", using: :btree
create_table "external_users", force: true do |t| create_table "external_users", force: true do |t|
t.integer "consumer_id" t.integer "consumer_id"
t.string "email" t.string "email"
@ -200,6 +202,9 @@ ActiveRecord::Schema.define(version: 20160204111716) do
t.string "user_type" t.string "user_type"
end end
add_index "submissions", ["exercise_id"], name: "test1", where: "((user_type)::text = 'ExternalUser'::text)", using: :btree
add_index "submissions", ["exercise_id"], name: "test2", using: :btree
create_table "teams", force: true do |t| create_table "teams", force: true do |t|
t.string "name" t.string "name"
t.datetime "created_at" t.datetime "created_at"