From 67a010794b2dca65e2c817f4f030c0a87d33dcd4 Mon Sep 17 00:00:00 2001 From: Connor Shea <connor.james.shea@gmail.com> Date: Tue, 16 Aug 2016 11:59:24 -0600 Subject: [PATCH] Remove accidental addition of table and index. --- db/schema.rb | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/db/schema.rb b/db/schema.rb index 2f8a5bb0630..26321f8a8a2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -652,16 +652,6 @@ ActiveRecord::Schema.define(version: 20160810142633) do add_index "namespaces", ["path"], name: "index_namespaces_on_path_trigram", using: :gin, opclasses: {"path"=>"gin_trgm_ops"} add_index "namespaces", ["type"], name: "index_namespaces_on_type", using: :btree - create_table "note_templates", force: :cascade do |t| - t.integer "user_id" - t.string "title" - t.text "note" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end - - add_index "note_templates", ["user_id"], name: "index_note_templates_on_user_id", using: :btree - create_table "notes", force: :cascade do |t| t.text "note" t.string "noteable_type" -- GitLab