year_calendar.sql 387 B

1234567891011121314
  1. CREATE TABLE [dbo].[year_calendar] (
  2. [calendar_id] [int] NOT NULL,
  3. [date] [datetime] NOT NULL,
  4. [day_off_declaration] [int] NULL,
  5. [is_school_holid] [smallint] NULL,
  6. [is_public_holid] [smallint] NULL,
  7. [day_note] [varchar](100) NULL,
  8. [client_db] [varchar](20) NOT NULL
  9. ,CONSTRAINT [year_calendar$0] PRIMARY KEY CLUSTERED ([calendar_id], [date], [client_db])
  10. )
  11. GO