Skip to content

Commit 88f1685

Browse files
committed
update_from_4.3_new_commerce.md: fix [Ibexa.EOLWhitespace]
1 parent acdb386 commit 88f1685

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/update_and_migration/from_4.3/update_from_4.3_new_commerce.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ The removable table are prefixed with `ses_` and `sve_`.
335335
FROM `information_schema`.`tables`
336336
WHERE `table_schema` = '<database_name>' AND (`table_name` LIKE 'ses_%' OR `table_name` LIKE 'sve_%')
337337
;
338-
338+
339339
PREPARE drop_stmt FROM @drop_query;
340340
EXECUTE drop_stmt;
341341
DEALLOCATE PREPARE drop_stmt;
@@ -348,7 +348,7 @@ The removable table are prefixed with `ses_` and `sve_`.
348348
```
349349

350350
```sql
351-
FOR table_row IN
351+
FOR table_row IN
352352
SELECT
353353
table_schema,
354354
table_name
@@ -363,7 +363,7 @@ The removable table are prefixed with `ses_` and `sve_`.
363363
table_name LIKE ('ses_%')
364364
OR
365365
table_name LIKE ('sve_%')
366-
)
366+
)
367367
LOOP
368368
EXECUTE 'DROP TABLE ' || table_row.table_schema || '.' || table_row.table_name;
369369
END LOOP;

0 commit comments

Comments
 (0)