Tables [dbo].[ShServiceHours]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)0
Created1:00:44 AM Thursday, March 21, 2019
Last Modified1:09:40 AM Thursday, March 21, 2019
KeyNameData TypeMax Length (Bytes)Allow NullsIdentityDefault
Cluster Primary Key PK__ShServic__BF3DD825E8C698CE: DayIDDayIDint4
False
1 - 1
ServiceHourCodeIDint4
False
Openbit1
False
((1))
DayofWeekint4
True
(NULL)
DateofHolidaydatetime8
True
(NULL)
OpeningTimedatetime8
True
ClosingTimedatetime8
True
Descriptionvarchar(128)128
True
KeyNameKey ColumnsUniqueFill Factor
Cluster Primary Key PK__ShServic__BF3DD825E8C698CE: DayIDPK__ShServic__BF3DD825E8C698CEDayID
True
80
CREATE TABLE [dbo].[ShServiceHours]
(
[DayID] [int] NOT NULL IDENTITY(1, 1),
[ServiceHourCodeID] [int] NOT NULL,
[Open] [bit] NOT NULL CONSTRAINT [DF_ShServiceHours_Open] DEFAULT ((1)),
[DayofWeek] [int] NULL CONSTRAINT [DF_ShServiceHours_DayofWeek] DEFAULT (NULL),
[DateofHoliday] [datetime] NULL CONSTRAINT [DF_ShServiceHours_DateofHoliday] DEFAULT (NULL),
[OpeningTime] [datetime] NULL,
[ClosingTime] [datetime] NULL,
[Description] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShServiceHours] ADD CONSTRAINT [PK__ShServic__BF3DD825E8C698CE] PRIMARY KEY CLUSTERED  ([DayID]) ON [PRIMARY]
GO