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

WEB邮件程序

开发平台:

PHP

  1. CREATE TABLE customer_notes (
  2.    customer_note_id        BIGINT      NOT NULL AUTO_INCREMENT,
  3.    user_id                 BIGINT      NOT NULL DEFAULT 0,
  4.    note                    TEXT        NOT NULL DEFAULT '',
  5.    last_update_by          BIGINT      NOT NULL DEFAULT 0,
  6.    last_update             DATETIME    NOT NULL,
  7.    PRIMARY KEY( customer_note_id ),
  8.    INDEX( customer_note_id, user_id )
  9. )