Posts by Breno Lorran • 21 points
4 posts
-
1
votes1
answer23
viewsA: Heroku - Error run seeder for popular BD
You’re going through the same trouble as this situation here. The error is how you are using the foreign key/index ratio of your tables in the database. A foreign key relationship involves a parent…
-
0
votes1
answer23
viewsA: Create alias for css Imports
That package fix it, use the package.json to configure aliases for any folder.
-
1
votes1
answer98
viewsA: Customize colors in ionic6
Styling components in Ionic can be in fact a curious task. But all the components of Ionic have "CSS Custom Properties" defined by the Ionic team itself. In version 5 they appear at the end of the…
-
0
votes2
answers68
viewsA: Sum of a product returning in a column the total
From what I understand, you want to group by id_m_product and not by the name of the product. It looks like this. sql = SELECT *, SUM(qty_product) FROM quintada_management GROUP BY id_m_product…