diff --git a/bartender/README.md b/bartender/README.md index ab0e161..5c6fc3f 100644 --- a/bartender/README.md +++ b/bartender/README.md @@ -13,6 +13,7 @@ SELECT a.name AS product, COALESCE(v.name, a.name) AS name, CONCAT(CONCAT(v.weight, ' '), u.display) AS weight, a.bio AS bio, + v.ean AS ean, COALESCE(v.description, a.description) AS description, CONCAT(COALESCE(v.ingredients, a.ingredients), s.bio_info) AS ingredients, CONCAT( @@ -34,7 +35,6 @@ FROM article AS a INNER JOIN unit AS u ON v.unit_id = u.id INNER JOIN label AS l ON v.label_id = l.id ORDER BY a.name, v.weight ASC - ``` --- @@ -61,5 +61,6 @@ ORDER BY a.name, v.weight ASC ### BIO text ```html - +

+

```