Releases: appany/AppAny.Quartz.EntityFrameworkCore.Migrations
Releases · appany/AppAny.Quartz.EntityFrameworkCore.Migrations
0.5.1
0.5.0
0.4.0
0.3.0
SQLite implementation (#50) * Draft version of SQLite implementation with integration test * Added a static reference for every table name in SQLite project, this is to keep all table names consistent across database types * Added SQLite migration test * Removed shouldly import * Assert.Null instead of Assert.NotNull on recording exception * Added publish package entry for SQLite * Forgot a prefix in QuartzTriggerConfiguration * Added integration test for SQLite which ensure the created dbcontext can be used as a JobStore * Removed the static table name references from the Entities * Fixed rebase merge error * Capitalised all column names for SQLite * Changed the signature of UseSQLite to have optional prefix and schema parameters * Removed nullable strings from the EntityConfiguration and corrected readonly name format * Organised the testing files into individual folder per database type * Changed signature for the UsePostgreSql() to use prefix and schema as parameters * Changed all column names to uppercase for MySQL entity configurations * Changed signature for the UseMySql() to use prefix as parameter * Corrected namespace for MySql configurations * Corrected namespace for MySql configurations Changed signature for the UseSqlServer() to use prefix and schema as parameters * Removed obsolete UsePrefix and UseSchema * Updated Readme to reflect current supported databases and made it more clear with examples * Updated the csproj of SQLite project * Made all name spacing consistent to just `AppAny.Quartz.EntityFrameworkCore.Migrations.{{ Provider }}` * Removed extra line * Added clarification that prefix and schema can be passed as parameters * Added default parameter value for schema in UseSqlite() and UseSqlServer()