-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
5 changed files
with
51 additions
and
24 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
Binary file not shown.
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,13 @@ | ||
USE [SwimClubMeet] | ||
GO | ||
|
||
/* | ||
New field introduced: IsSwimmer | ||
So as all queries work correctly ... a blanket assignment of the new field is performed. | ||
All members are assummed to be swimmer. | ||
*/ | ||
|
||
UPDATE [dbo].[Member] SET [IsSwimmer] = 1; | ||
|
||
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,14 @@ | ||
USE [SwimClubMeet] | ||
GO | ||
|
||
-- Dictionary Object Alter SQL | ||
CREATE DEFAULT dbo.BIT_1 AS 1 | ||
GO | ||
|
||
-- Dictionary Object Alter SQL | ||
CREATE DEFAULT dbo.BIT_0 AS 0 | ||
GO | ||
|
||
|
||
|
||
|