Skip to content

Commit a1871c5

Browse files
author
WIN2016\redgate
committed
Huxley EOS
1 parent 00420bf commit a1871c5

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

flyway.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
id = "97ea357d-2613-4415-b434-775478105625"
2-
name = "FlywayTrialProject"
2+
name = "Flyway OctoPilot"
33
databaseType = "SqlServer"
44

55
[environments.development]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
SET NUMERIC_ROUNDABORT OFF
2+
GO
3+
SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, QUOTED_IDENTIFIER, ANSI_NULLS ON
4+
GO
5+
PRINT N'Dropping [dbo].[HuxleyTable]'
6+
GO
7+
DROP TABLE [dbo].[HuxleyTable]
8+
GO
9+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
SET NUMERIC_ROUNDABORT OFF
2+
GO
3+
SET ANSI_PADDING, ANSI_WARNINGS, CONCAT_NULL_YIELDS_NULL, ARITHABORT, QUOTED_IDENTIFIER, ANSI_NULLS ON
4+
GO
5+
PRINT N'Creating [dbo].[HuxleyTable]'
6+
GO
7+
CREATE TABLE [dbo].[HuxleyTable]
8+
(
9+
[FirstName] [nchar] (10) NULL,
10+
[LastName] [nchar] (10) NULL,
11+
[Address] [nchar] (10) NULL
12+
)
13+
GO
14+
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CREATE TABLE [dbo].[HuxleyTable]
2+
(
3+
[FirstName] [nchar] (10) NULL,
4+
[LastName] [nchar] (10) NULL,
5+
[Address] [nchar] (10) NULL
6+
)
7+
GO

0 commit comments

Comments
 (0)