You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.0 KiB

USE [BEA]
GO
/****** Object: Table [dbo].[Temporaer_Berechtigung] Script Date: 06.10.2013 10:37:41 ******/
DROP TABLE [dbo].[Temporaer_Berechtigung]
GO
/****** Object: Table [dbo].[Temporaer_Berechtigung] Script Date: 06.10.2013 10:37:41 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Temporaer_Berechtigung](
[NrTempBerechtigung] [int] IDENTITY(1,1) NOT NULL,
[Personal_FunktionStelleNr] [int] NULL,
[Beschreibung] [varchar](1024) NULL,
[Unterlagen] [varchar](1024) NULL,
[Bearbeiter_ISI] [varchar](50) NULL,
[Kontaktperson_FB] [varchar](255) NULL,
[Termin] [datetime] NULL,
[aktiv] [bit] NULL,
[erstellt_am] [datetime] NULL,
[mutiert_am] [datetime] NULL,
[mutierer] [int] NULL,
CONSTRAINT [PK_Temporaer_Berechtigung] PRIMARY KEY CLUSTERED
(
[NrTempBerechtigung] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO