This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DROP TABLE IF EXISTS `messages`; | |
| CREATE TABLE `messages` ( | |
| `_id` INTEGER PRIMARY KEY AUTOINCREMENT, | |
| `key_remote_jid` TEXT NOT NULL, | |
| `key_from_me` INTEGER, | |
| `key_id` TEXT NOT NULL, | |
| `status` INTEGER, | |
| `needs_push` INTEGER, | |
| `data` TEXT, | |
| `timestamp` INTEGER, |