В настоящее время я пытаюсь создать связь между пользователем и сущностью.
class Entity < ApplicationRecord
has_one :first_level_approver, class_name: "User"
end
class User < ApplicationRecord
belongs_to :entity, optional: false
end
В консоли Rails, когда я делаю что-то вроде ...
e = Entity.first
entity.first_level_approver = User.first
Он автоматически обновляет пользователя, чтобы иметь тот же идентификатор сущности, что и сущность в e
,Он не назначает сущность утверждающему первого уровня пользователя.Правильно ли настроена моя ассоциация?Если, что мне нужно сделать, чтобы иметь возможность присвоить сущности first level approver
класса пользователя.
Вот моя схема
create_table "entities", force: :cascade do |t|
t.string "name"
t.string "uuid"
t.boolean "root", default: false
t.bigint "secretary_id"
t.bigint "first_level_approver_id"
t.bigint "second_level_approver_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["first_level_approver_id"], name: "index_entities_on_first_level_approver_id"
t.index ["second_level_approver_id"], name: "index_entities_on_second_level_approver_id"
t.index ["secretary_id"], name: "index_entities_on_secretary_id"
end
create_table "users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at"
t.datetime "remember_created_at"
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.string "first_name"
t.string "last_name"
t.string "role", default: "teacher"
t.string "uuid"
t.bigint "entity_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["entity_id"], name: "index_users_on_entity_id"
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
end