mirror of
https://github.com/grocy/grocy.git
synced 2025-08-20 04:12:59 +00:00
Use the summernote editor for product description (closes #288)
This commit is contained in:
8
migrations/0080.sql
Normal file
8
migrations/0080.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
UPDATE products
|
||||
SET description = REPLACE(description, CHAR(13) + CHAR(10), '<br>');
|
||||
|
||||
UPDATE products
|
||||
SET description = REPLACE(description, CHAR(13), '<br>');
|
||||
|
||||
UPDATE products
|
||||
SET description = REPLACE(description, CHAR(10), '<br>');
|
Reference in New Issue
Block a user