Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions AndroidSMSBackupRestoreCleaner.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="FacetManager">
<facet type="Python" name="Python">
<configuration sdkName="" />
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
46 changes: 46 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,49 @@ Emoji needs the `lxml` package. Use `pip install lxml` to install it first, then
* Python 2 only. (For now?)
* ~~No emoji support~~ Now supports emoji! See above.
* No MMS duplicate filtering. It just maintains the MMS entries as is.

# DB info

'''

CREATE TABLE smss(protocol text, address text, date text, type text, subject text, body text, toa text, sc_toa text, service_center text, read text, status text, locked text, date_sent text, readable_date text, contact_name text, primary key (address, date));;

CREATE TABLE mmss(text_only text, ct_t text,
using_mode text, msg_box text, secret_mode text,
v text, retr_txt_cs text, ct_cls text, favorite text,
d_rpt_st text, deletable text, st text, sim_imsi text,
creator text, tr_id text, sim_slot text,
read text, m_id text, callback_set text, m_type text, retr_txt text,
locked text, resp_txt text, rr_st text, safe_message text,
retr_st text, reserved text, msg_id text, hidden text,
sub text, rr text, seen text, ct_l text, from_address text,
m_size text, exp text, sub_cs text, sub_id text, resp_st text,
date text, app_id text, date_sent text, pri text, address text,
read_status text, d_tm text, d_rpt text, device_name text,
spam_report text, rpt_a text, m_cls text, readable_date text,
contact_name text, network_type text, privacy_mode text,
id integer,
primary key (address, date));

CREATE TABLE parts(seq text,
ct text,
name text,
chset text,
cd text,
fn text,
cid text,
cl text,
ctt_s text,
ctt_t text,
text text,
data text,
fk_id_mms integer,
primary key (data, text, name));

CREATE TABLE addrs(address text,
type text,
charset text,
fk_id_mms integer,
primary key (fk_id_mms, charset, type, address));

'''
Loading