# 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<br>

CREATE TABLE \[dbo].\[F\_PRODUCTS]\(

&#x20;   \[code\_list\_id] \[int] NULL,

&#x20;   \[product\_id] \[int] NULL,

&#x20;   \[application\_id] \[int] NULL,

&#x20;   \[FLC\_product\_name] \[varchar]\(1024) NULL,

&#x20;   \[short\_product\_name] \[varchar]\(1024) NULL,

&#x20;   \[registrator\_id] \[int] NULL,

&#x20;   \[plant\_registration\_number] \[int] NULL,

&#x20;   \[composite\_indicator] \[int] NULL,

&#x20;   \[FLC\_productgroup\_code] \[int] NULL,

&#x20;   \[entry\_date] \[datetime] NULL,

&#x20;   \[expire\_date] \[datetime] NULL,

&#x20;   \[change\_date\_time] \[datetime] NULL

) ON \[PRIMARY]

GO
