Skip to content
This repository has been archived by the owner on May 14, 2022. It is now read-only.

Commit

Permalink
Temporary fixup to get branch deployed on staging
Browse files Browse the repository at this point in the history
  • Loading branch information
eliotjordan committed Apr 19, 2017
1 parent a56e5fa commit 3da845e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 24 deletions.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions db/migrate/20170418135317_add_parent_to_vocabularies.rb

This file was deleted.

18 changes: 13 additions & 5 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20170418135317) do
ActiveRecord::Schema.define(version: 20170410193003) do

create_table "bookmarks", force: :cascade do |t|
t.integer "user_id", null: false
Expand Down Expand Up @@ -517,8 +517,14 @@
t.string "label"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "parent_id"
t.index ["parent_id"], name: "index_vocabularies_on_parent_id"
end

create_table "vocabulary_collections", force: :cascade do |t|
t.string "label"
t.integer "vocabulary_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["vocabulary_id"], name: "index_vocabulary_collections_on_vocabulary_id"
end

create_table "vocabulary_terms", force: :cascade do |t|
Expand All @@ -528,8 +534,10 @@
t.string "tgm_label"
t.string "lcsh_label"
t.integer "vocabulary_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "vocabulary_collection_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["vocabulary_collection_id"], name: "index_vocabulary_terms_on_vocabulary_collection_id"
t.index ["vocabulary_id"], name: "index_vocabulary_terms_on_vocabulary_id"
end

Expand Down

0 comments on commit 3da845e

Please sign in to comment.