aboutsummaryrefslogtreecommitdiff
path: root/bot/src/utils/sync.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/utils/sync.js')
-rw-r--r--bot/src/utils/sync.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/src/utils/sync.js b/bot/src/utils/sync.js
index ecee7b1..d51a081 100644
--- a/bot/src/utils/sync.js
+++ b/bot/src/utils/sync.js
@@ -4,14 +4,14 @@ import { guildSettings } from '../models/guild-settings.js';
export function syncDB() {
quote.sync({alter: true}).then(() => {
- console.log('Quote database synced!');
+ console.log('[>] Quote database synced!');
});
pendingQuote.sync({alter: true}).then(() => {
- console.log('Pending Quote database synced!');
+ console.log('[>] Pending Quote database synced!');
});
guildSettings.sync({alter: true}).then(() => {
- console.log('Guild database synced!');
+ console.log('[>] Guild database synced!');
});
}