Using SQL Server Management studio, execute the following:
use das;
declare @version AS nvarchar(MAX) = (select value from dbo.shepherd_configs where name = 'ParityServerVersion');
update dbo.validation_schema set version = @version;
exec dbo.UpdateShepherdConfig 'DBSchemaVersion', @version;
Verify the two versions returned now correctly match the version of the App Control Server installed.
use das;
select * from dbo.validation_schema;
select * from dbo.shepherd_configs where name = 'DBSchemaVersion';