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_6_7 extends Migration { public static final Migration_6_7 INSTANCE = new Migration_6_7(); private Migration_6_7() { super(6, 7); } @Override // androidx.room.migration.Migration public void migrate(SupportSQLiteDatabase db) { Intrinsics.checkNotNullParameter(db, "db"); db.execSQL("\n CREATE TABLE IF NOT EXISTS `WorkProgress` (`work_spec_id` TEXT NOT NULL, `progress`\n BLOB NOT NULL, PRIMARY KEY(`work_spec_id`), FOREIGN KEY(`work_spec_id`)\n REFERENCES `WorkSpec`(`id`) ON UPDATE CASCADE ON DELETE CASCADE )\n "); } }