Hi,
We are currently using ServiceStack with OrmLite in our application. Some of the built-in ServiceStack features (such as Auth, APIKeysFeature, DatabaseJobFeature, etc.) default to using EF (Entity Framework) or OrmLite Code-First migration classes to automatically generate and maintain their required database tables.
However, our DBAs do not want our application to manage database schema updates at runtime or use code-first migrations for these tables. Instead, our team strictly relies on raw SQL scripts executed externally to manage and maintain all database schemas.
I currently enable all features from a template and get the DDLs from generated tables in SQL Server but I was wondering if there is another way.
When a feature like ApiKeysFeature has a new table definition for a new version, do you provide that information in the release note?
Thank you!