File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,6 @@ import (
13
13
"xorm.io/xorm/names"
14
14
)
15
15
16
- // To setup postgres:
17
- // Run: docker compose up
18
- // To run examples
19
- // Run: go run .
20
-
21
16
// Create a separate custom type for each field that is being encrypted, using the relevant go type.
22
17
// This custom type can then be used to access the conversion interface to use toDB and fromDb.
23
18
type EncryptedTextField string
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ func installCsCustomTypes(engine *sql.DB) {
30
30
31
31
// Installing EQL
32
32
func installDsl (engine * sql.DB ) {
33
- path := "./cipherstash-encrypt-dsl.sql"
33
+ path := "../../../release /cipherstash-encrypt-dsl.sql"
34
34
sql , err := os .ReadFile (path )
35
35
if err != nil {
36
36
log .Fatalf ("Failed to read SQL file: %v" , err )
You can’t perform that action at this time.
0 commit comments