Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- USE [MERCEDES_ENTITY]
- GO
- /****** Object: Table [dbo].[IntegratorTaskFptActions] Script Date: 4/4/2023 3:37:09 PM ******/
- SET ANSI_NULLS ON
- GO
- SET QUOTED_IDENTIFIER ON
- GO
- CREATE TABLE [dbo].[IntegratorTaskFptActions](
- [integrator_task_fpt_action_id] [INT] NOT NULL,
- [integrator_task_id] [INT] NOT NULL,
- [file_extension] [VARCHAR](50) NOT NULL,
- [add_headers] [bit] NOT NULL,
- CONSTRAINT [PK_IntegratorTaskFptActions] PRIMARY KEY CLUSTERED
- (
- [integrator_task_fpt_action_id] ASC
- )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
- ) ON [PRIMARY]
- GO
- INSERT [dbo].[IntegratorTaskFptActions] ([integrator_task_fpt_action_id], [integrator_task_id], [file_extension], [add_headers]) VALUES (1, 2, N'.txt', 0)
- GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement