Files
clickHouseData/sql-server-ddl/dbo.Mapping_StoreVisibility.Table.sql
T
2026-05-18 17:40:50 +05:30

19 lines
1010 B
Transact-SQL

USE [CPMIndiaBusinessInsight]
GO
/****** Object: Table [dbo].[Mapping_StoreVisibility] Script Date: 5/18/2026 5:34:08 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Mapping_StoreVisibility](
[ID] [bigint] IDENTITY(1,1) NOT NULL,
[Project_Id] [int] NOT NULL,
[StoreId] [int] NULL,
[VisibilityDefinitionid] [int] NULL,
[Fromdate] [date] NULL,
[Todate] [date] NULL,
[CreateDate] [datetime] NULL,
[CreateBy] [varchar](50) NULL
) ON [PRIMARY]
GO