11UPDATE klage .document
22SET json = REPLACE(json, ' heading-one' , ' h1' )
3- where created > ' 2023-03-24' ;
3+ WHERE created > ' 2023-03-24' ;
44
55UPDATE klage .document
66SET json = REPLACE(json, ' heading-two' , ' h2' )
7- where created > ' 2023-03-24' ;
7+ WHERE created > ' 2023-03-24' ;
88
99UPDATE klage .document
1010SET json = REPLACE(json, ' heading-three' , ' h3' )
11- where created > ' 2023-03-24' ;
11+ WHERE created > ' 2023-03-24' ;
1212
1313UPDATE klage .document
1414SET json = REPLACE(json, ' heading-four' , ' h4' )
15- where created > ' 2023-03-24' ;
15+ WHERE created > ' 2023-03-24' ;
1616
1717UPDATE klage .document
1818SET json = REPLACE(json, ' paragraph' , ' p' )
19- where created > ' 2023-03-24' ;
19+ WHERE created > ' 2023-03-24' ;
2020
2121UPDATE klage .document
2222SET 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' ;
23+ WHERE created > ' 2023-03-24' ;
2824
2925UPDATE klage .document
3026SET json = REPLACE(json, ' numbered-list' , ' ol' )
31- where created > ' 2023-03-24' ;
27+ WHERE created > ' 2023-03-24' ;
3228
3329UPDATE klage .document
3430SET json = REPLACE(json, ' list-item-container' , ' lic' )
35- where created > ' 2023-03-24' ;
31+ WHERE created > ' 2023-03-24' ;
3632
3733UPDATE klage .document
3834SET json = REPLACE(json, ' list-item' , ' li' )
39- where created > ' 2023-03-24' ;
35+ WHERE created > ' 2023-03-24' ;
4036
4137UPDATE klage .document
4238SET json = REPLACE(json, ' textAlign' , ' align' )
43- where created > ' 2023-03-24' ;
39+ WHERE created > ' 2023-03-24' ;
4440
4541UPDATE klage .document
4642SET json = REPLACE(json, ' text-align-left' , ' left' )
47- where created > ' 2023-03-24' ;
43+ WHERE created > ' 2023-03-24' ;
4844
4945UPDATE klage .document
5046SET json = REPLACE(json, ' text-align-right' , ' right' )
51- where created > ' 2023-03-24' ;
47+ WHERE created > ' 2023-03-24' ;
0 commit comments