am fbb72631: add new column "real_date" for IM messages table.

Merge commit 'fbb7263121923cd30d52ac4a35c4309b0a618ddb' into eclair-plus-aosp

* commit 'fbb7263121923cd30d52ac4a35c4309b0a618ddb':
  add new column "real_date" for IM messages table.
This commit is contained in:
Wei Huang
2009-09-27 14:55:12 -07:00
committed by Android Git Automerger

View File

@@ -896,11 +896,20 @@ public class Im {
String BODY = "body";
/**
* The date this message is sent or received
* The date this message is sent or received. This represents the display date for
* the message.
* <P>Type: INTEGER</P>
*/
String DATE = "date";
/**
* The real date for this message. While 'date' can be modified by the client
* to account for server time skew, the real_date is the original timestamp set
* by the server for incoming messages.
* <P>Type: INTEGER</P>
*/
String REAL_DATE = "real_date";
/**
* Message Type, see {@link MessageType}
* <P>Type: INTEGER</P>