Created
July 14, 2021 14:04
-
-
Save vinijmoura/d5dfe999c5db9ec1e23a719161f25560 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
CREATE TABLE [dbo].[TeamSettings]( | |
[TeamSettingId] [int] IDENTITY(1,1), | |
[TeamProjectName] [varchar](100) NOT NULL, | |
[TeamName] [varchar](100) NOT NULL, | |
[TeamWorkingWithBugs] [varchar](20) NOT NULL, | |
CONSTRAINT [PK_TeamSettings] PRIMARY KEY CLUSTERED | |
( | |
[TeamSettingId] ASC | |
)WITH (STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY] | |
) ON [PRIMARY] | |
GO | |
CREATE TABLE [dbo].[TeamSettingsBackLogLevels]( | |
[TeamSettingId] [INT] NOT NULL, | |
[TeamBackLogLevel] [varchar](50) NOT NULL, | |
FOREIGN KEY (TeamSettingId) REFERENCES TeamSettings(TeamSettingId) | |
) | |
GO | |
CREATE TABLE [dbo].[TeamSettingsWorkingDays]( | |
[TeamSettingId] [INT] NOT NULL, | |
[TeamWorkingDay] [varchar](20) NULL, | |
FOREIGN KEY (TeamSettingId) REFERENCES TeamSettings(TeamSettingId) | |
) | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment