Files
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

22 lines
761 B
Java

package androidx.work.impl;
import androidx.room.migration.Migration;
import androidx.sqlite.db.SupportSQLiteDatabase;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes.dex */
public final class Migration_4_5 extends Migration {
public static final Migration_4_5 INSTANCE = new Migration_4_5();
private Migration_4_5() {
super(4, 5);
}
@Override // androidx.room.migration.Migration
public void migrate(SupportSQLiteDatabase db) {
Intrinsics.checkNotNullParameter(db, "db");
db.execSQL("ALTER TABLE workspec ADD COLUMN `trigger_content_update_delay` INTEGER NOT NULL DEFAULT -1");
db.execSQL("ALTER TABLE workspec ADD COLUMN `trigger_max_content_delay` INTEGER NOT NULL DEFAULT -1");
}
}