spec/dummy/db/schema.rb in enju_leaf-1.1.3 vs spec/dummy/db/schema.rb in enju_leaf-1.1.4
- old
+ new
@@ -9,11 +9,11 @@
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20150506105356) do
+ActiveRecord::Schema.define(version: 20160703185015) do
create_table "accepts", force: :cascade do |t|
t.integer "basket_id"
t.integer "item_id"
t.integer "librarian_id"
@@ -861,14 +861,15 @@
add_index "message_templates", ["status"], name: "index_message_templates_on_status", unique: true
create_table "message_transitions", force: :cascade do |t|
t.string "to_state"
- t.text "metadata", default: "{}"
+ t.text "metadata", default: "{}"
t.integer "sort_key"
t.integer "message_id"
t.datetime "created_at"
t.datetime "updated_at"
+ t.boolean "most_recent"
end
add_index "message_transitions", ["message_id"], name: "index_message_transitions_on_message_id"
add_index "message_transitions", ["sort_key", "message_id"], name: "index_message_transitions_on_sort_key_and_message_id", unique: true