From d0d5d14afc8f19cc1bb54ba7fa06df70e2a314b4 Mon Sep 17 00:00:00 2001 From: Agnes Lin Date: Thu, 19 Dec 2019 11:16:27 -0500 Subject: [PATCH] docs: add link to connectors page as reference for auto-migrate --- docs/site/Database-migrations.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/site/Database-migrations.md b/docs/site/Database-migrations.md index 6b7ba65403e4..a91cd217c6fd 100644 --- a/docs/site/Database-migrations.md +++ b/docs/site/Database-migrations.md @@ -20,12 +20,16 @@ LoopBack offers two ways to do this: - **Auto-update**: Change database schema objects if there is a difference between the objects and model definitions. Existing data will be kept. +For connector-specific settings for defining model schemas and auto-migration, +check out the specific connector under +[Database Connectors](Database-connectors.md). + {% include warning.html content="Auto-update will attempt to preserve data while updating the schema in your target database, but this is not guaranteed to be safe. Please check the documentation for your specific connector(s) for a detailed -breakdown of behaviors for automigrate! " %} +breakdown of behaviors for auto-migrate! " %} ## Examples