From 82d1072fa262d9fca09068aea6632f06da2ed284 Mon Sep 17 00:00:00 2001 From: "f[nZk]" Date: Mon, 25 Oct 2021 01:12:33 +0700 Subject: [PATCH] docs(database): update the explanation to be less confusing #12541 (#13581) fix wrong branch merge that cannot be reopened again. --- docs/manual/core-concepts/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/core-concepts/getting-started.md b/docs/manual/core-concepts/getting-started.md index bdc0b2a6e4f8..94bd14933049 100644 --- a/docs/manual/core-concepts/getting-started.md +++ b/docs/manual/core-concepts/getting-started.md @@ -83,7 +83,7 @@ To experiment with the other dialects, which are harder to setup locally, you ca ## New databases versus existing databases -If you are starting a project from scratch, and your database does not exist yet, Sequelize can be used since the beginning in order to automate the creation of every table in your database. +If you are starting a project from scratch, and your database is still empty, Sequelize can be used since the beginning in order to automate the creation of every table in your database. Also, if you want to use Sequelize to connect to a database that is already filled with tables and data, that works as well! Sequelize has got you covered in both cases.