Skip to content

Commit 5557282

Browse files
committed
Cleaned up script.
1 parent 1079940 commit 5557282

File tree

1 file changed

+12
-16
lines changed

1 file changed

+12
-16
lines changed
Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,47 @@
11
UPDATE klage.document
22
SET json = REPLACE(json, 'heading-one', 'h1')
3-
where created > '2023-03-24';
3+
WHERE created > '2023-03-24';
44

55
UPDATE klage.document
66
SET json = REPLACE(json, 'heading-two', 'h2')
7-
where created > '2023-03-24';
7+
WHERE created > '2023-03-24';
88

99
UPDATE klage.document
1010
SET json = REPLACE(json, 'heading-three', 'h3')
11-
where created > '2023-03-24';
11+
WHERE created > '2023-03-24';
1212

1313
UPDATE klage.document
1414
SET json = REPLACE(json, 'heading-four', 'h4')
15-
where created > '2023-03-24';
15+
WHERE created > '2023-03-24';
1616

1717
UPDATE klage.document
1818
SET json = REPLACE(json, 'paragraph', 'p')
19-
where created > '2023-03-24';
19+
WHERE created > '2023-03-24';
2020

2121
UPDATE klage.document
2222
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';
2824

2925
UPDATE klage.document
3026
SET json = REPLACE(json, 'numbered-list', 'ol')
31-
where created > '2023-03-24';
27+
WHERE created > '2023-03-24';
3228

3329
UPDATE klage.document
3430
SET json = REPLACE(json, 'list-item-container', 'lic')
35-
where created > '2023-03-24';
31+
WHERE created > '2023-03-24';
3632

3733
UPDATE klage.document
3834
SET json = REPLACE(json, 'list-item', 'li')
39-
where created > '2023-03-24';
35+
WHERE created > '2023-03-24';
4036

4137
UPDATE klage.document
4238
SET json = REPLACE(json, 'textAlign', 'align')
43-
where created > '2023-03-24';
39+
WHERE created > '2023-03-24';
4440

4541
UPDATE klage.document
4642
SET json = REPLACE(json, 'text-align-left', 'left')
47-
where created > '2023-03-24';
43+
WHERE created > '2023-03-24';
4844

4945
UPDATE klage.document
5046
SET json = REPLACE(json, 'text-align-right', 'right')
51-
where created > '2023-03-24';
47+
WHERE created > '2023-03-24';

0 commit comments

Comments
 (0)