数据表:T_Meta_StorageService_L(云存储配置信息多语言)

T_Meta_StorageService_L(云存储配置信息多语言):描述

名称

T_Meta_StorageService_L(云存储配置信息多语言)

代码

T_Meta_StorageService_L

注释

云存储配置信

模型

BOS

主键

Key_1


T_Meta_StorageService_L(云存储配置信息多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FPKID

int

 

TRUE

 

注册插件编码

FID

int

 

TRUE

 

语言

FLOCALEID

int

 

FALSE

 

名称

FNAME

nvarchar(80)

80

FALSE

 

描述

FDESCRIPTION

nvarchar(255)

255

FALSE

 


T_Meta_StorageService_L(云存储配置信息多语言):脚本代码

if exists (select 1
from sysindexes
where id = object_id('T_Meta_StorageService_L')
and name = 'IDX_META_STORAGESL_FID'
and indid > 0
and indid < 255)
drop index T_Meta_StorageService_L.IDX_META_STORAGESL_FID
go

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

/*==============================================================*/
/* Table: T_Meta_StorageService_L */
/*==============================================================*/
create table T_Meta_StorageService_L (
FPKID int not null default 0,
FID int not null,
FLOCALEID int null,
FNAME nvarchar(80) null,
FDESCRIPTION nvarchar(255) null,
constraint PK_META_STORAGESERVICE_L primary key nonclustered (FPKID)
)
go

/*==============================================================*/
/* Index: IDX_META_STORAGESL_FID */
/*==============================================================*/
create clustered index IDX_META_STORAGESL_FID on T_Meta_StorageService_L (
FID ASC,
FLOCALEID ASC
)
go


T_Meta_StorageService_L(云存储配置信息多语言):键值定义

名称

代码

主要的

Key_1

Key_1

TRUE


T_Meta_StorageService_L(云存储配置信息多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

IDX_META_STORAGESL_FID

IDX_META_STORAGESL_FID

FALSE

TRUE

FALSE

FALSE

FALSE

T_Meta_StorageService_L(云存储配置信息多语言)