Fix doubled line from PR 3188 (support mastodon filter api) (#3460)

This commit is contained in:
UlrichKu 2023-03-18 08:05:39 +01:00 committed by GitHub
parent 3bb92d51bf
commit 9087d0ecdd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -644,7 +644,6 @@ public abstract class AppDatabase extends RoomDatabase {
@Override
public void migrate(@NonNull SupportSQLiteDatabase database) {
database.execSQL("ALTER TABLE `DraftEntity` ADD COLUMN `failedToSendNew` INTEGER NOT NULL DEFAULT 0");
database.execSQL("ALTER TABLE `TimelineStatusEntity` ADD COLUMN `filtered` TEXT");
}
};