Resolution
In the portal.properties file, the following properties have to do with Liferay's "Verify" process that checks through the database connected to the Liferay portal:
#
# Input a list of comma delimited class names that implement
# com.liferay.portal.integrity.VerifyProcess. These classes will run on
# startup to verify and fix any integrity problems found in the database.
#
verify.processes=com.liferay.portal.verify.VerifyProcessSuite #
# Specify the frequency for verifying the integrity of the database.
#
# Constants in VerifyProcess:
# public static final int ALWAYS = -1;
# public static final int NEVER = 0;
# public static final int ONCE = 1;
#
verify.frequency=1
It is important to note that while the name of the class is "Verify", this process will actually correct any issues that it finds in the database. Because of this, there is risk associated with running the verify process, but it should not cause any problems if run multiple times.
Make sure to back up any database in which Liferay's verify process will be run.