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

WEB邮件程序

开发平台:

PHP

  1. CREATE TABLE user_theme_table (
  2.     user_id           BIGINT        NOT NULL AUTO_INCREMENT,
  3.     theme             TEXT          NOT NULL DEFAULT '',
  4.     PRIMARY KEY( user_id ),
  5.     INDEX( user_id )
  6. )