首页 新闻 会员 周边

PowerDesigner 生成数据库脚本会多出很多多余的代码?

0
悬赏园豆:60 [已关闭问题] 关闭于 2016-03-28 18:47
/*==============================================================*/
/* Table: Sys_Button                                            */
/*==============================================================*/
create table Sys_Button (
   Id                   int                  identity,
   DispalyName          varchar(255)         not null,
   Icon                 varchar(255)         null,
   RunEvent             varchar(255)         null,
   IsAction             bit                  not null,
   Sort                 int                  not null,
   CreatorUserId        int                  not null,
   CreationTime         datetime             not null,
   constraint PK_SYS_BUTTON primary key nonclustered (Id)
)
(
   Id                   int not null auto_increment,
   DispalyName          varchar(255) not null,
   Icon                 varchar(255,
   RunEvent             varchar(255),
   IsAction             bit not null,
   Sort                 int not null,
   CreatorUserId        int not null,
   CreationTime         datetime not null,
   primary key (Id)
)
go

为什么会多出

(
   Id                   int not null auto_increment,
   DispalyName          varchar(255) not null,
   Icon                 varchar(255,
   RunEvent             varchar(255),
   IsAction             bit not null,
   Sort                 int not null,
   CreatorUserId        int not null,
   CreationTime         datetime not null,
   primary key (Id)
)这段代码?是不是设置什么选项?
OneWork的主页 OneWork | 初学一级 | 园豆:5
提问于:2016-02-29 14:16
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册