Skip to content

Instantly share code, notes, and snippets.

@tristanguerin
tristanguerin / GitCommitEmoji.md
Last active March 30, 2021 07:46 — forked from Pintouch/GitCommitEmoji.md
Git Commit message Emoji

Inspired by dannyfritz/commit-message-emoji

See also gitmoji.

Commit type Emoji
Initial commit 🎉 🎉 :tada:
Version tag 🔖 🔖 :bookmark:
New feature ✨ :sparkles:
Bugfix 🐛 🐛 :bug:
@julienbourdeau
julienbourdeau / clean-prestashop-db.sql
Last active March 20, 2024 13:06
Clean PrestaShop database - Drop old and unless data
# Delete all logs
TRUNCATE ps_log;
# Delete old connection data (only used for stats)
# change 2016-02-01 00:00:00 according to you needs
DELETE c, cs
FROM ps_connections c
LEFT JOIN ps_connections_source cs ON (c.id_connections = cs.id_connections)
WHERE c.date_add < '2016-02-01 00:00:00';
@parmentf
parmentf / GitCommitEmoji.md
Last active May 24, 2024 00:27
Git Commit message Emoji