USE [SIGPC] GO /****** Object: Table [dbo].[t_rpt_desglocegestiones] Script Date: 1/15/2021 12:13:02 PM ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[t_rpt_desglocegestiones]') AND type in (N'U')) DROP TABLE [dbo].[t_rpt_desglocegestiones] GO /****** Object: Table [dbo].[t_rpt_desglocegestiones] Script Date: 1/15/2021 12:13:02 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[t_rpt_desglocegestiones]( [PKDESGLOCEGESTIONES] [int] IDENTITY(1,1) NOT NULL, [CANCELADADESGLOCEGESTIONES] [int] NOT NULL, [BLOQUEADADESGLOCEGESTIONES] [int] NOT NULL, [FINALIZADADESGLOCEGESTIONES] [int] NOT NULL, [PENDIENTEDESGLOCEGESTIONES] [int] NOT NULL, [MESDESGLOCEGESTIONES] [int] NOT NULL, [ANNODESGLOCEGESTIONES] [int] NOT NULL, [STATUSDESGLOCEGESTIONES] [bit] NOT NULL, CONSTRAINT [PK_t_rpt_desglocegestiones] PRIMARY KEY CLUSTERED ( [PKDESGLOCEGESTIONES] 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