David Benson
David Benson
+1 I can verify this issue is happening.
After further testing, I made a few updates: 1. Fixed an issue where Npgsql was more strict than the app in timezone comparison, causing some failed inserts 2. Since Ombi...
Thanks for the testing - I've been running this PR as well on my personal instance since December, and haven't had any issues, although I've only had about a half...
> could you provide a working example for database.json, it will also be easier to update the docs later based on this sure, here's what I use (with the passwords...
+1 for FTP deployer.
> is there a workaround for this, i've been trying to get this to work, You can manually create the `OpenApiCompatableChatLanguageModel`, until the `supportsStructuredOutputs` parameter is added : ```typescript const...
FWIW, I was able to get a successful migration with custom data type enums (on 9.0.3) by doing: ``` public class MigrationDbContextFactory : IDesignTimeDbContextFactory { public MyDbContext CreateDbContext(string[] args) {...
The migration did add the enums - they are present in the migration as ``` migrationBuilder.AlterDatabase() .Annotation("Npgsql:Enum:auth_types", "api_key,basic_auth,o_auth") .Annotation("Npgsql:Enum:user_role", "admin,user"); ``` then later on are used in the seed data...