Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ CREATE TABLE [RDS].[DimDataCollections] (
[DataCollectionCloseDate] DATETIME NULL,
[DataCollectionAcademicSchoolYear] NVARCHAR (7) NULL,
[DataCollectionSchoolYear] NVARCHAR (7) NULL,
[DataCollectionCertificationCloseDate] DATETIME NULL,
[DataCollectionCertificationOpenDate] DATETIME NULL,
[DataCollectionCorrectionsEndDate] DATETIME NULL,
CONSTRAINT [PK_DimCollections] PRIMARY KEY CLUSTERED ([DimDataCollectionId] ASC) WITH (DATA_COMPRESSION = PAGE)
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ CREATE TABLE [RDS].[FactK12StaffAssignments]
[SeaJobClassificationId] int NULL,
[FullTimeEquivalency] decimal(3,2) NOT NULL,
[K12StaffAssignmentCount] int NOT NULL,
[EvaluationRequiredIndicator] VARCHAR(15) NOT NULL,
CONSTRAINT [PK_FactK12StaffAssignments] PRIMARY KEY CLUSTERED ([FactK12StaffAssignmentId] ASC),
CONSTRAINT [FK_FactK12StaffAssignments_AssignmentEndDateId] FOREIGN KEY ([AssignmentEndDateId]) REFERENCES [RDS].[DimDates] ([DimDateId]) ON DELETE No Action ON UPDATE No Action,
CONSTRAINT [FK_FactK12StaffAssignments_AssignmentStartDateId] FOREIGN KEY ([AssignmentStartDateId]) REFERENCES [RDS].[DimDates] ([DimDateId]) ON DELETE No Action ON UPDATE No Action,
Expand Down