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.

28 lines
632 B

USE [BEA]
GO
/****** Object: Table [dbo].[WindowSize] Script Date: 27.09.2013 20:08:51 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[WindowSize](
[Eintragnr] [int] IDENTITY(1,1) NOT NULL,
[Mitarbeiternr] [int] NULL,
[window] [int] NULL,
[width] [int] NULL,
[height] [int] NULL,
[erstellt_am] [datetime] NULL,
[mutiert_am] [datetime] NULL,
[mutierer] [int] NULL,
CONSTRAINT [PK_WindowSize] PRIMARY KEY CLUSTERED
(
[Eintragnr] 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