There are three tables as far as I can see:
AbpEntityChanges AbpEntityChangeSets AbpEntityPropertyChanges
Are those what you are after?
B
Apologies. A better resolution is to just empty the Application manifest node i.e. change it to <ApplicationManifest></ApplicationManifest>
Angular solution now builds.
The problem is in CompleteFootball.AngularUI.csproj. The following line has a forward slash at the start.
<ApplicationManifest>\src\shared\utils\chat-message.component.html</ApplicationManifest>
To fix the problem, open the file in notepad and remove the preceding slash. i.e. change the line to be
<ApplicationManifest>src\shared\utils\chat-message.component.html</ApplicationManifest>
Thanks Brandon