数据表:T_BOS_CUSTOMPACKAGE(用户自定义部署包)

T_BOS_CUSTOMPACKAGE(用户自定义部署包):描述

名称

T_BOS_CUSTOMPACKAGE(用户自定义部署包)

代码

T_BOS_CUSTOMPACKAGE

注释

 

模型

BOS

主键

PK_BOS_CUSTOMPACKAGE


T_BOS_CUSTOMPACKAGE(用户自定义部署包):列规格定义

名称

代码

数据类型

长度

强制

注释

内码

FID

varchar(36)

36

TRUE

 

机器名

FCOMPUTENAME

nvarchar(100)

100

FALSE

 

提取元数据

FDEPLOYMETADATA

ntext

 

FALSE

 


T_BOS_CUSTOMPACKAGE(用户自定义部署包):脚本代码

if exists (select 1
from sysobjects
where id = object_id('T_BOS_CUSTOMPACKAGE')
and type = 'U')
drop table T_BOS_CUSTOMPACKAGE
go

/*==============================================================*/
/* Table: T_BOS_CUSTOMPACKAGE */
/*==============================================================*/
create table T_BOS_CUSTOMPACKAGE (
FID varchar(36) not null default ' ',
FCOMPUTENAME nvarchar(100) null,
FDEPLOYMETADATA ntext null,
constraint PK_T_BOS_CUSTOMPACKAGE primary key (FID)
)
go


T_BOS_CUSTOMPACKAGE(用户自定义部署包):键值定义

名称

代码

主要的

PK_BOS_CUSTOMPACKAGE

PK_BOS_CUSTOMPACKAGE

TRUE