This commit introduces Oracle database integration by adding necessary configurations, entity mappings, and Docker Compose setup. Oracle-specific mappings ensure compatibility with NCLOB for large data handling. The changes also include updates to appsettings, enum for SqlDatabaseProvider, and project references to support Oracle.
11 lines
145 B
C#
11 lines
145 B
C#
namespace Elsa.Server.Web;
|
|
|
|
public enum SqlDatabaseProvider
|
|
{
|
|
SqlServer,
|
|
Sqlite,
|
|
MySql,
|
|
PostgreSql,
|
|
Oracle,
|
|
CockroachDb
|
|
} |