Thanks, didn't realize that migrations needed to be added after version updates/migrations.
Thanks,
Added
private void ConfigureSaasPaymentOptions(IConfiguration configuration)
{
Configure<AbpSaasPaymentOptions>(options =>
{
options.IsPaymentSupported = true;
});
}
and called it from ConfigureServices
Solved with information provided here: https://stackoverflow.com/a/58927285/564726