There was an error while loading. Please reload this page.
1 parent 048e96e commit e3554d0Copy full SHA for e3554d0
1 file changed
scripts/replace-autofill-with-placeholders/main.sql
@@ -0,0 +1,5 @@
1
+-- Script to replace ALL OCCURANCES of {{client.custom-field-name}} with {{__client__.custom-field-name}}
2
+-- __client__ is used as a dynamic placeholder for custom terminologies
3
+UPDATE "Setting"
4
+SET content = REPLACE(content, '{{client.', '{{__client__.')
5
+WHERE content LIKE '%{{client.%';
0 commit comments