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

WEB邮件程序

开发平台:

PHP

  1. CREATE TABLE user_todo_items_table (
  2.    todo_item_id         BIGINT NOT NULL AUTO_INCREMENT,
  3.    todo_section_id      BIGINT NOT NULL,
  4.    user_id              BIGINT NOT NULL,
  5.    status               BIGINT NOT NULL,
  6.    title                TEXT,
  7.    assigned_to_id       BIGINT DEFAULT -1,
  8.    entered_date         DATE,
  9.    entered_time         TIME,
  10.    due_date             DATE,
  11.    due_time             TIME,
  12.    asap                 INT( 1 ),
  13.    active               INT( 1 ),
  14.    PRIMARY KEY( todo_item_id ),
  15.    INDEX( todo_item_id, todo_section_id, user_id )
  16. );