Skip to content

Commit

Permalink
✨ (aws-weekly.yml): Add a new line to improve readability and maintai…
Browse files Browse the repository at this point in the history
…n consistency in the workflow file

📝 (mssql.sql): Add database creation and switching commands for better database management and setup
  • Loading branch information
jandroav committed Jun 1, 2024
1 parent 03411df commit b173feb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/aws-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
core.setOutput("databaseVersion", splitValues[1]);
test:
needs: [deploy-ephemeral-cloud-infra, init-mysql, setup]
permissions:
Expand Down
4 changes: 4 additions & 0 deletions src/test/resources/init-changelogs/aws/mssql.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
--liquibase formatted sql
--changeset liquibase:1 runAlways:true
USE master;
CREATE DATABASE lbcat;
GO
USE NewDB;
DROP TABLE IF EXISTS [dbo].[authors]
CREATE TABLE [dbo].[authors](
[id] [int] NOT NULL,
Expand Down

0 comments on commit b173feb

Please sign in to comment.