数据表:t_mdl_formoperationtype_l(可选操作多语言)

t_mdl_formoperationtype_l(可选操作多语言):描述

名称

t_mdl_formoperationtype_l(可选操作多语言)

代码

t_mdl_formoperationtype_l

注释

 

模型

BOS

主键

pk_mdl_formoperationtype_l


t_mdl_formoperationtype_l(可选操作多语言):列规格定义

名称

代码

数据类型

长度

强制

注释

主键

FPKID

int

 

TRUE

 

表单操作编码

FID

int

 

TRUE

 

语言

FLocaleID

int

 

TRUE

 

名称

FName

nvarchar(255)

255

FALSE

 


t_mdl_formoperationtype_l(可选操作多语言):脚本代码

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

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

/*==============================================================*/
/* Table: t_mdl_formoperationtype_l */
/*==============================================================*/
create table t_mdl_formoperationtype_l (
FPKID int not null default 0,
FID int not null default 0,
FLocaleID int not null default 0,
FName nvarchar(255) null,
constraint pk_mdl_formoperationtype_l primary key (FPKID)
)
go

/*==============================================================*/
/* Index: idx_mdl_formoperationtype_l */
/*==============================================================*/
create unique index idx_mdl_formoperationtype_l on t_mdl_formoperationtype_l (
FID ASC,
FLocaleID ASC
)
go


t_mdl_formoperationtype_l(可选操作多语言):键值定义

名称

代码

主要的

pk_mdl_formoperationtype_l

pk_mdl_formoperationtype_l

TRUE


t_mdl_formoperationtype_l(可选操作多语言):索引定义

名称

代码

唯一的

群集器

主要的

外键

候选键

表格

idx_mdl_formoperationtype_l

idx_mdl_formoperationtype_l

TRUE

FALSE

FALSE

FALSE

FALSE

t_mdl_formoperationtype_l(可选操作多语言)