We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d37f0 commit a0922eaCopy full SHA for a0922ea
Extensions.Caching.PostgreSql/PostgreSqlScripts/Create_Table_DistCache.sql
@@ -1,6 +1,7 @@
1
--- Table: public."DistCache"
+-- Table: [schemaName]."DistCache"
2
3
--- DROP TABLE public."DistCache";
+
4
+CREATE SCHEMA IF NOT EXISTS [schemaName];
5
6
CREATE TABLE IF NOT EXISTS [schemaName].[tableName]
7
(
README.md
@@ -72,6 +72,7 @@ Then you can delete the database with:
72
prepare-database.cmd -erase
73
```
74
## Change Log
75
+1. v3.0.2 - `CreateInfrastructure` also creates the schema issue #8
76
1. v3.0.1 - `DisableRemoveExpired` configuration added; If `TRUE` the cache instance won`t delete expired items.
77
1. v3.0
78
1. [BREAKING CHANGE] - Direct instantiation not preferred
0 commit comments