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

WEB邮件程序

开发平台:

PHP

  1. CREATE TABLE user_todo_status_table (
  2.    todo_status_id          BIGINT NOT NULL AUTO_INCREMENT,
  3.    todo_section_id         BIGINT NOT NULL,
  4.    name                    TEXT,
  5.    highlight_color         TEXT,
  6.    text_color              TEXT,
  7.    PRIMARY KEY( todo_status_id ),
  8.    INDEX( todo_status_id, todo_section_id )
  9. );