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

Commit 78084a62 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 3208

* changes:
  Add "locked" column to sms and pdu tables.
parents 6262ae5c 55dac128
Loading
Loading
Loading
Loading
+13 −1
Original line number Original line Diff line number Diff line
@@ -146,6 +146,12 @@ public final class Telephony {
         * <P>Type: TEXT</P>
         * <P>Type: TEXT</P>
         */
         */
        public static final String SERVICE_CENTER = "service_center";
        public static final String SERVICE_CENTER = "service_center";

        /**
         * Has the message been locked?
         * <P>Type: INTEGER (boolean)</P>
         */
        public static final String LOCKED = "locked";
}
}


    /**
    /**
@@ -1008,6 +1014,12 @@ public final class Telephony {
         * <P>Type: INTEGER</P>
         * <P>Type: INTEGER</P>
         */
         */
        public static final String THREAD_ID = "thread_id";
        public static final String THREAD_ID = "thread_id";

        /**
         * Has the message been locked?
         * <P>Type: INTEGER (boolean)</P>
         */
        public static final String LOCKED = "locked";
    }
    }


    /**
    /**