MyEclipse7.5 + mysql5.1不知道能不能生成如下格式的文件,格式很重要
/*==============================================================*/
/* Table: VOTE_RECORD                                           */
/*==============================================================*/
create table VOTE_RECORD
(
   VRECORD_ID           bigint not null auto_increment,
   VTOPIC_ID            bigint not null,
   MEMBER_ID            bigint,
   VOTE_TIME            datetime comment '投票时间',
   VOTE_IP              varchar(50) comment '投票IP',
   VOTE_COOKIE          char(32) comment '投票cookie',
   primary key (VRECORD_ID)
)
comment = "投票记录";这个是不是某个插件的特定格式????