user_table.sql
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. CREATE TABLE user_table (
  2.     user_id           BIGINT        NOT NULL AUTO_INCREMENT,
  3.     user_name         TEXT          NOT NULL DEFAULT '',
  4.     password          TEXT          NOT NULL DEFAULT '',
  5.     login_deny        INT( 1 )      NOT NULL DEFAULT 0,
  6.     domain_id         BIGINT        NOT NULL DEFAULT 0,
  7.     last_update       DATETIME      NOT NULL,
  8.     PRIMARY KEY( user_id ),
  9.     INDEX( user_id )
  10. )