Change forgotten schema.rb

(leoselig/codeocean#2)
This commit is contained in:
leo.selig
2016-02-04 13:34:55 +01:00
parent c3df7ff482
commit 63502831aa

View File

@ -11,7 +11,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20160204094409) do ActiveRecord::Schema.define(version: 20160204111716) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "plpgsql" enable_extension "plpgsql"
@ -20,8 +20,11 @@ ActiveRecord::Schema.define(version: 20160204094409) do
t.string "oauth2token" t.string "oauth2token"
t.datetime "created_at" t.datetime "created_at"
t.datetime "updated_at" t.datetime "updated_at"
t.integer "user_id"
end end
add_index "code_harbor_links", ["user_id"], name: "index_code_harbor_links_on_user_id", using: :btree
create_table "comments", force: true do |t| create_table "comments", force: true do |t|
t.integer "user_id" t.integer "user_id"
t.integer "file_id" t.integer "file_id"