Back to project page BLEMeshChat.
The source code is released under:
GNU General Public License
If you think the Android project BLEMeshChat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pro.dbro.ble.data.model; /* w ww. j a v a 2 s .c o m*/ import net.simonvt.schematic.annotation.Database; import net.simonvt.schematic.annotation.Table; /** * SQL Database definition. * * Created by davidbrodsky on 7/28/14. */ @Database(version = ChatDatabase.DATABASE_VERSION) public class ChatDatabase { public static final int DATABASE_VERSION = 1; /** Table Definition Reference Name SQL Tablename */ @Table(PeerTable.class) public static final String PEERS = "peers"; @Table(MessageTable.class) public static final String MESSAGES = "msgs"; @Table(MessageDeliveryTable.class) public static final String DELIVERED_MESSAGES = "m_dlvry"; @Table(IdentityDeliveryTable.class) public static final String DELIVERED_IDENTITIES = "p_dlvry"; }