⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mysqlscript.txt

📁 极限网络智能办公系统 Office Automation V3.0官方100%源代码.
💻 TXT
字号:

drop table if exists UserInfo;

drop table if exists Room;

drop table if exists LoginHistory;

/*==============================================================*/
/* Table: LoginHistory                                          */
/*==============================================================*/
create table if not exists LoginHistory
(
   LoginID                        int                   	 not null AUTO_INCREMENT,
   UserName                       varchar(30)                    not null,
   Alias                          varchar(30)                    not null,
   IP                             varchar(20)                    not null default 'a',
   LoginTime                      datetime                       not null,
   LogoutTime                     datetime                       not null,
   RoomID                         int                            not null,
   PRIMARY KEY (LoginID)
); 

/*==============================================================*/
/* Table: Room                                                  */
/*==============================================================*/
create table if not exists Room
(
   RoomID                         int                            not null,
   RoomName                       varchar(20)                    not null,
   MaxUser                        int                            not null default 100,
   NearMaxUser                    int                            not null default 80,
   IniNo                          int                            not null default 1,
   TemplateNo                     int                            not null default 1,
   LogRoom                        int                            not null default 0,
   LogCommandInfo                 int                            not null default 1,
   LogUserLoginInfo               int                            not null default 1,
   LogSecret                      int                            not null default 1,
   LogIP                          int                            not null default 0,
   LastMessage                    int                            not null default 6,
   RoomArea                       int                            not null default 0,
   RoomType                       int                            not null default 0,
   AllowGrade                     int                            not null default 0,
   AllowMember                    int                            not null default 0,
   AllowUserName                  int                            not null default 0,
   AllowGuest                     int                            not null default 1,
   CompType                       int                            not null default 1,
   CryptType                      int                            not null default 1,
   AllowPublic                    int                            not null default 1,
   Background                     varchar(100)                   not null default '/images/bbb.jpg',
   LogoutUrl                      varchar(50)                    not null default '/',
   ExternValue                    varchar(255)                   not null default '',
   Administrators                 varchar(255)                   not null default 'admin',
   RoomTopic                      varchar(200)                   not null default '',
   RoomPassword                   varchar(20)                    not null default '',
   PrivateRoom                    int                            not null default 0,
   SupportAudio                   int                            not null default 1,
   SupportVideo                   int                            not null default 1,
   RoomDisplay                    int                            not null default 1,
   Other                          int                            not null default 0,
   primary key (RoomID)
);


/*==============================================================*/
/* Table: UserInfo                                              */
/*==============================================================*/
create table if not exists UserInfo
(
   UserName                       varchar(30)                    not null,
   Alias                          varchar(30)                    not null ,
   Password                       varchar(40)                    not null default 'a',
   Age                            int                            not null default 1,
   Sex                            int                            not null default 2,
  Member                          int                            not null default 0,
   Grade                          int                            not null default 0,
   Credit                         int                            not null default 0,
   Email                          varchar(50)                    not null default 'a',
   Oicq                           varchar(20)                    not null default '',
   Icon                           varchar(20)                    not null default '',
   Photo                          varchar(100)                   not null default 'a',
   Resume                         varchar(200)                   not null default 'a',
   Guest                          int                            not null default 3,
   RegistTime                     datetime                       not null default '2004-1-1 00:00:00',
   LoginTime                      datetime                       not null default '2004-1-1 00:00:00',
   LogoutTime                     datetime                       not null default '2004-1-1 00:00:00',
   TotalTime                      int                            not null default 0,
   Question                       varchar(50)                    not null default '',
   Answer                         varchar(50)                    not null default '',
   Status                       int                              not null default 1,
   IP                             varchar(20)                    not null default 'a',
   RoomID                         int                            not null default 0,
   primary key (UserName)
);

insert into Room(RoomID,RoomName) values(1,'demo room');

create table if not exists TransferCredit (
TransferCreditID      int                  not null AUTO_INCREMENT,
InitUserName          varchar(30)          not null,
InitIP                varchar(20)          not null,
InitCredit            int                 not null,
PassUserName          varchar(30)          not null,
PassIP                varchar(20)          not null,
PassCredit            int                 not null,
TransferTime            datetime          not null ,
primary key (TransferCreditID)
);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -