···262262 --sql='select tweetId from archive_like' \
263263 --skip-existing
264264265265+If you want these imported tweets to then be reflected in the `favorited_by` table, you can do so by applying the following SQL query:
266266+267267+ $ sqlite3 archive.db
268268+ SQLite version 3.22.0 2018-01-22 18:45:57
269269+ Enter ".help" for usage hints.
270270+ sqlite> INSERT OR IGNORE INTO favorited_by (tweet, user)
271271+ ...> SELECT tweetId, 'YOUR_TWITTER_ID' FROM archive_like;
272272+ <Ctrl+D>
273273+274274+Replace YOUR_TWITTER_ID with your numeric Twitter ID. If you don't know that ID you can find it out by running the following:
275275+276276+ $ twitter-to-sqlite fetch \
277277+ "https://api.twitter.com/1.1/account/verify_credentials.json" \
278278+ | grep '"id"' | head -n 1
279279+265280## Design notes
266281267282* Tweet IDs are stored as integers, to afford sorting by ID in a sensible way