package com.fsck.k9.mailstore.migrations;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import timber.log.Timber;
import com.fsck.k9.K9;
class MigrationTo40 {
public static void addMimeTypeColumn(SQLiteDatabase db) {
try {
db.execSQL("ALTER TABLE messages ADD mime_type TEXT");
} catch (SQLiteException e) {
Timber.e("Unable to add mime_type column to messages");
}
}
}