From b79f090d1fed7439337f8c5418d22cf65ba21d34 Mon Sep 17 00:00:00 2001 From: jandroav Date: Sat, 1 Jun 2024 18:59:49 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20(mssql.sql):=20add=20USE=20lbcat?= =?UTF-8?q?;=20statement=20to=20specify=20the=20database=20to=20use=20befo?= =?UTF-8?q?re=20executing=20SQL=20commands=20for=20better=20clarity=20and?= =?UTF-8?q?=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/resources/init-changelogs/aws/mssql.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/resources/init-changelogs/aws/mssql.sql b/src/test/resources/init-changelogs/aws/mssql.sql index a084154db..26f34ba2c 100644 --- a/src/test/resources/init-changelogs/aws/mssql.sql +++ b/src/test/resources/init-changelogs/aws/mssql.sql @@ -1,5 +1,6 @@ --liquibase formatted sql --changeset liquibase:1 runAlways:true +USE lbcat; DROP TABLE IF EXISTS [dbo].[authors] CREATE TABLE [dbo].[authors]( [id] [int] NOT NULL,