18 lines
1.0 KiB
Transact-SQL
18 lines
1.0 KiB
Transact-SQL
USE [CPMIndiaBusinessInsight]
|
|
GO
|
|
/****** Object: Table [dbo].[coverage_remarks] Script Date: 5/18/2026 5:34:08 PM ******/
|
|
SET ANSI_NULLS ON
|
|
GO
|
|
SET QUOTED_IDENTIFIER ON
|
|
GO
|
|
CREATE TABLE [dbo].[coverage_remarks](
|
|
[Id] [bigint] IDENTITY(1,1) NOT NULL,
|
|
[project_id] [int] NOT NULL,
|
|
[reason_id] [int] NOT NULL,
|
|
[reason_remarks] [varchar](max) NOT NULL,
|
|
[detailed_reason_remarks] [varchar](max) NULL,
|
|
[reason_type] [varchar](50) NULL,
|
|
[reason_type_id] [int] NULL
|
|
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
|
|
GO
|