fix file size limit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
-- Add variant column for multiple APK builds per version (universal, arm64-v8a, etc.)
|
||||
ALTER TABLE "AppRelease" ADD COLUMN "variant" TEXT NOT NULL DEFAULT 'universal';
|
||||
|
||||
DROP INDEX IF EXISTS "AppRelease_platform_version_key";
|
||||
DROP INDEX IF EXISTS "AppRelease_platform_versionCode_key";
|
||||
|
||||
CREATE UNIQUE INDEX "AppRelease_platform_versionCode_variant_key" ON "AppRelease"("platform", "versionCode", "variant");
|
||||
CREATE INDEX "AppRelease_platform_versionCode_isPublished_idx" ON "AppRelease"("platform", "versionCode", "isPublished");
|
||||
Reference in New Issue
Block a user