spec/dummy/db/schema.rb in maestrano-connector-rails-0.4.1 vs spec/dummy/db/schema.rb in maestrano-connector-rails-0.4.2

- old
+ new

@@ -9,26 +9,27 @@ # 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: 20160215103120) do +ActiveRecord::Schema.define(version: 20160427120963) 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" + t.boolean "external_inactive", default: false 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" @@ -38,10 +39,11 @@ t.string "uid" t.string "name" t.string "tenant" t.string "oauth_provider" t.string "oauth_uid" + t.string "oauth_name" t.string "oauth_token" t.string "refresh_token" t.string "instance_url" t.string "synchronized_entities" t.datetime "created_at", null: false @@ -76,9 +78,11 @@ t.string "provider" t.string "uid" t.string "first_name" t.string "last_name" t.string "email" + t.string "locale" + t.string "timezone" t.string "tenant" t.datetime "created_at", null: false t.datetime "updated_at", null: false end