spec/dummy/db/schema.rb in maestrano-connector-rails-0.2.9 vs spec/dummy/db/schema.rb in maestrano-connector-rails-0.2.10
- old
+ new
@@ -9,21 +9,25 @@
# 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: 20160205133024) do
+ActiveRecord::Schema.define(version: 20160215103120) do
create_table "id_maps", force: :cascade do |t|
t.string "connec_id"
t.string "connec_entity"
t.string "external_id"
t.string "external_entity"
t.integer "organization_id"
t.datetime "last_push_to_connec"
t.datetime "last_push_to_external"
- t.datetime "created_at", null: false
- t.datetime "updated_at", null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.boolean "to_connec", default: true
+ t.boolean "to_external", default: true
+ t.string "name"
+ t.string "message"
end
add_index "id_maps", ["connec_id", "connec_entity", "organization_id"], name: "idmap_connec_index"
add_index "id_maps", ["external_id", "external_entity", "organization_id"], name: "idmap_external_index"
add_index "id_maps", ["organization_id"], name: "idmap_organization_index"