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