-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
WIN2016\redgate
committed
Mar 6, 2024
1 parent
a22beaa
commit 00420bf
Showing
6 changed files
with
78 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
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].[OctoAddress]' | ||
GO | ||
DROP TABLE [dbo].[OctoAddress] | ||
GO | ||
PRINT N'Altering [dbo].[Widgets]' | ||
GO | ||
ALTER TABLE [dbo].[Widgets] DROP | ||
COLUMN [RedgateID] | ||
GO | ||
PRINT N'Refreshing [dbo].[CurrentPrices]' | ||
GO | ||
EXEC sp_refreshview N'[dbo].[CurrentPrices]' | ||
GO | ||
PRINT N'Creating [dbo].[HuxTest]' | ||
GO | ||
CREATE TABLE [dbo].[HuxTest] | ||
( | ||
[Hux] [nchar] (10) NULL, | ||
[Test] [nchar] (10) NULL | ||
) | ||
GO | ||
PRINT N'Creating [dbo].[Socials]' | ||
GO | ||
CREATE TABLE [dbo].[Socials] | ||
( | ||
[Twitter] [nchar] (10) NULL, | ||
[Handle] [nchar] (10) NULL, | ||
[Age] [nchar] (10) NULL | ||
) | ||
GO | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
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].[Socials]' | ||
GO | ||
DROP TABLE [dbo].[Socials] | ||
GO | ||
PRINT N'Dropping [dbo].[HuxTest]' | ||
GO | ||
DROP TABLE [dbo].[HuxTest] | ||
GO | ||
PRINT N'Altering [dbo].[Widgets]' | ||
GO | ||
ALTER TABLE [dbo].[Widgets] ADD | ||
[RedgateID] [nchar] (10) NULL | ||
GO | ||
PRINT N'Refreshing [dbo].[CurrentPrices]' | ||
GO | ||
EXEC sp_refreshview N'[dbo].[CurrentPrices]' | ||
GO | ||
PRINT N'Creating [dbo].[OctoAddress]' | ||
GO | ||
CREATE TABLE [dbo].[OctoAddress] | ||
( | ||
[FirstName] [nchar] (10) NULL, | ||
[LastName] [nchar] (10) NULL, | ||
[OctopusID] [nchar] (10) NULL, | ||
[OctopusAccount] [nchar] (10) NULL | ||
) | ||
GO | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CREATE TABLE [dbo].[OctoAddress] | ||
( | ||
[FirstName] [nchar] (10) NULL, | ||
[LastName] [nchar] (10) NULL, | ||
[OctopusID] [nchar] (10) NULL, | ||
[OctopusAccount] [nchar] (10) NULL | ||
) | ||
GO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters