### Create Initial PostgreSQL Migration Source: https://github.com/idseefeld/postgresqlforumbraco/blob/main/Our.Umbraco.PostgreSql/Our.Umbraco.PostgreSql.EFCore/readme.txt Use this command to add a new migration for your Umbraco PostgreSQL EF Core project. Ensure your connection string is correctly configured in appsettings.json. ```bash dotnet ef migrations add AddOpenIdDict -s src/Umbraco.Web.UI -p src/Our.Umbraco.PostgreSql.EFCore -c UmbracoDbContext ``` -------------------------------- ### Create Test PostgreSQL Migration Source: https://github.com/idseefeld/postgresqlforumbraco/blob/main/Our.Umbraco.PostgreSql/Our.Umbraco.PostgreSql.EFCore/readme.txt A command to create a test migration. This is useful for verifying the migration process or for specific testing scenarios within your Umbraco PostgreSQL EF Core project. ```bash dotnet ef migrations add Test -s src/Umbraco.Web.UI -p src/Our.Umbraco.PostgreSql.EFCore -c UmbracoDbContext ``` -------------------------------- ### Remove Last PostgreSQL Migration Source: https://github.com/idseefeld/postgresqlforumbraco/blob/main/Our.Umbraco.PostgreSql/Our.Umbraco.PostgreSql.EFCore/readme.txt This command removes the most recently added migration from your Umbraco PostgreSQL EF Core project. Use with caution as it will also remove the associated database changes. ```bash dotnet ef migrations remove -s src/Umbraco.Web.UI -p src/Our.Umbraco.PostgreSql.EFCore -c UmbracoDbContext ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.