diff --git a/lms/models/lms_user.py b/lms/models/lms_user.py index 0c6faf07f7..df296f9179 100644 --- a/lms/models/lms_user.py +++ b/lms/models/lms_user.py @@ -39,6 +39,11 @@ class LMSUser(CreatedUpdatedMixin, Base): In those cases lti_user_id will be the 1.1 value and we'll store here the 1.3 version. """ + lms_api_user_id: Mapped[str | None] = mapped_column() + """ + ID of the user in the propietary LMS API. + """ + h_userid: Mapped[str] = mapped_column(unique=True, index=True) """The userid value in H. This is calculated hashing tool_consumer_instance_guid and lti_user_id together."""