28 lines
1.6 KiB
Transact-SQL
28 lines
1.6 KiB
Transact-SQL
USE [CPMIndiaBusinessInsight]
|
|
GO
|
|
/****** Object: Table [dbo].[additional_visibility] Script Date: 5/18/2026 5:34:07 PM ******/
|
|
SET ANSI_NULLS ON
|
|
GO
|
|
SET QUOTED_IDENTIFIER ON
|
|
GO
|
|
CREATE TABLE [dbo].[additional_visibility](
|
|
[Id] [bigint] IDENTITY(1,1) NOT NULL,
|
|
[project_id] [int] NOT NULL,
|
|
[Mid] [bigint] NULL,
|
|
[emp_id] [int] NOT NULL,
|
|
[store_id] [int] NOT NULL,
|
|
[storetype_id] [int] NOT NULL,
|
|
[channel_id] [int] NOT NULL,
|
|
[chain_id] [int] NOT NULL,
|
|
[camera_allowed] [varchar](1) NOT NULL,
|
|
[visit_date] [date] NOT NULL,
|
|
[is_present] [varchar](1) NOT NULL,
|
|
[brand_id] [int] NOT NULL,
|
|
[display_id] [int] NOT NULL,
|
|
[Remarks] [varchar](250) NULL,
|
|
[image_url] [varchar](500) NULL,
|
|
[created_date] [date] NOT NULL,
|
|
[created_by] [varchar](50) NOT NULL
|
|
) ON [PRIMARY]
|
|
GO
|