1+ UPDATE klage .document
2+ SET json = REPLACE(json, ' heading-one' , ' h1' )
3+ where created > ' 2023-03-24' ;
4+
5+ UPDATE klage .document
6+ SET json = REPLACE(json, ' heading-two' , ' h2' )
7+ where created > ' 2023-03-24' ;
8+
9+ UPDATE klage .document
10+ SET json = REPLACE(json, ' heading-three' , ' h3' )
11+ where created > ' 2023-03-24' ;
12+
13+ UPDATE klage .document
14+ SET json = REPLACE(json, ' heading-four' , ' h4' )
15+ where created > ' 2023-03-24' ;
16+
17+ UPDATE klage .document
18+ SET json = REPLACE(json, ' paragraph' , ' p' )
19+ where created > ' 2023-03-24' ;
20+
21+ UPDATE klage .document
22+ SET json = REPLACE(json, ' bullet-list' , ' ul' )
23+ where created > ' 2023-03-24' ;
24+
25+ UPDATE klage .document
26+ SET json = REPLACE(json, ' ordered-list' , ' ol' )
27+ where created > ' 2023-03-24' ;
28+
29+ UPDATE klage .document
30+ SET json = REPLACE(json, ' numbered-list' , ' ol' )
31+ where created > ' 2023-03-24' ;
32+
33+ UPDATE klage .document
34+ SET json = REPLACE(json, ' list-item-container' , ' lic' )
35+ where created > ' 2023-03-24' ;
36+
37+ UPDATE klage .document
38+ SET json = REPLACE(json, ' list-item' , ' li' )
39+ where created > ' 2023-03-24' ;
40+
41+ UPDATE klage .document
42+ SET json = REPLACE(json, ' textAlign' , ' align' )
43+ where created > ' 2023-03-24' ;
44+
45+ UPDATE klage .document
46+ SET json = REPLACE(json, ' text-align-left' , ' left' )
47+ where created > ' 2023-03-24' ;
48+
49+ UPDATE klage .document
50+ SET json = REPLACE(json, ' text-align-right' , ' right' )
51+ where created > ' 2023-03-24' ;
0 commit comments