Created
August 12, 2021 23:31
-
-
Save vinijmoura/444193a4ceb2ee8cad293886ec18b201 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].[TeamSettingsIterationCapacities]( | |
[TeamProjectName] [varchar](100) NOT NULL, | |
[TeamName] [varchar](100) NOT NULL, | |
[IterationName] [varchar](100) NOT NULL, | |
[IterationStartDate] [datetime] NOT NULL, | |
[IterationFinishDate] [datetime] NOT NULL, | |
[totalIterationCapacityPerDay] DECIMAL(10,2) NOT NULL, | |
[totalIterationDaysOff] DECIMAL(10,2) NOT NULL | |
) | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment