From 47c9d0eee356fdc813fe4392087d5af8b009ab44 Mon Sep 17 00:00:00 2001 From: man-o-valor <154533182+man-o-valor@users.noreply.github.com> Date: Fri, 29 Dec 2023 13:38:13 -0500 Subject: [PATCH] fix(sequelize): Highlight correct code change in syncing (#1538) --- guide/sequelize/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/sequelize/README.md b/guide/sequelize/README.md index 097f00eb8..2a9016c46 100644 --- a/guide/sequelize/README.md +++ b/guide/sequelize/README.md @@ -138,7 +138,7 @@ The model mirrors very closely what the database defines. There will be a table Now that your structure is defined, you need to make sure the model exists in the database. To make sure the bot is ready and all the data you might need has arrived, add this line in your code. -```js {3} +```js {2} client.once(Events.ClientReady, readyClient => { Tags.sync(); console.log(`Logged in as ${readyClient.user.tag}!`);