TFS_ANTIGUO/TPAtesa_Vitalit/BE/InventarioV2/Tablas/Seguridad.Permiso.Table.sql
2026-06-26 09:45:23 -06:00

22 lines
1.1 KiB
Transact-SQL
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

USE [InventarioV2]
GO
/****** Object: Table [Seguridad].[Permiso] Script Date: 23/12/2020 02:53:58 p.m. ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [Seguridad].[Permiso](
[Id_Permiso] [int] NOT NULL,
[Descripcion] [varchar](50) NOT NULL,
[Estado] [bit] NOT NULL,
CONSTRAINT [PK_Permiso] PRIMARY KEY CLUSTERED
(
[Id_Permiso] 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