Skip to content

Commit

Permalink
Update_kathi
Browse files Browse the repository at this point in the history
  • Loading branch information
WIN2016\redgate committed Mar 29, 2024
1 parent 00420bf commit 424d056
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion flyway.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
id = "97ea357d-2613-4415-b434-775478105625"
name = "FlywayTrialProject"
name = "Flyway OctoPilot"
databaseType = "SqlServer"

[environments.development]
Expand Down
9 changes: 9 additions & 0 deletions migrations/U014_20240329142855__UNDO-New test_kathi table.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
SET NUMERIC_ROUNDABORT OFF
GO
SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, QUOTED_IDENTIFIER, ANSI_NULLS ON
GO
PRINT N'Dropping [dbo].[test_Kathi]'
GO
DROP TABLE [dbo].[test_Kathi]
GO

13 changes: 13 additions & 0 deletions migrations/V014_20240329142855__New test_kathi table.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
SET NUMERIC_ROUNDABORT OFF
GO
SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, QUOTED_IDENTIFIER, ANSI_NULLS ON
GO
PRINT N'Creating [dbo].[test_Kathi]'
GO
CREATE TABLE [dbo].[test_Kathi]
(
[Col1] [int] NULL,
[Col2] [varchar] (30) NULL
)
GO

6 changes: 6 additions & 0 deletions schema-model/Tables/dbo.test_Kathi.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CREATE TABLE [dbo].[test_Kathi]
(
[Col1] [int] NULL,
[Col2] [varchar] (30) NULL
)
GO

0 comments on commit 424d056

Please sign in to comment.