f_products

/****** Object: Table [dbo].[F_PRODUCTS] Script Date: 1/26/2019 6:57:48 PM ******/

SET ANSI_NULLS ON

GO

SET QUOTED_IDENTIFIER ON

GO

CREATE TABLE [dbo].[F_PRODUCTS](

[code_list_id] [int] NULL,

[product_id] [int] NULL,

[application_id] [int] NULL,

[FLC_product_name] [varchar](1024) NULL,

[short_product_name] [varchar](1024) NULL,

[registrator_id] [int] NULL,

[plant_registration_number] [int] NULL,

[composite_indicator] [int] NULL,

[FLC_productgroup_code] [int] NULL,

[entry_date] [datetime] NULL,

[expire_date] [datetime] NULL,

[change_date_time] [datetime] NULL

) ON [PRIMARY]

GO

Last updated