Add "deleted" row to Events table.

This will replace the DeletedEvents table when moving Calendar to the
new sync framework.
This commit is contained in:
Ken Shirriff
2009-10-12 17:06:32 -07:00
parent 7c6770c26b
commit 3b000937f5

View File

@@ -514,6 +514,12 @@ public final class Calendar {
* <P>Type: String</P>
*/
public static final String OWNER_ACCOUNT = "ownerAccount";
/**
* Whether the row has been deleted. A deleted row should be ignored.
* <P>Type: INTEGER (boolean)</P>
*/
public static final String DELETED = "deleted";
}
/**