Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1d6442f0 authored by Ken Shirriff's avatar Ken Shirriff
Browse files

New sync framework: add new columns.

These columns will be used by the new sync framework.  The old columns
will be removed later.
parent de42dae8
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -80,6 +80,11 @@ public final class Calendar {
     */
    public interface CalendarsColumns
    {
        /**
         * A string that uniquely identifies this contact to its source
         */
        public static final String SOURCE_ID = "sourceid";

        /**
         * The color of the calendar
         * <P>Type: INTEGER (color value)</P>
@@ -125,6 +130,12 @@ public final class Calendar {
         * <p>Type: INTEGER (boolean)</p>
         */
        public static final String SYNC_EVENTS = "sync_events";

        /**
         * Sync state data.
         * <p>Type: String (blob)</p>
         */
        public static final String SYNC_STATE = "sync_state";
    }

    /**