Working on the retention system.

This commit is contained in:
charlesgauthereau
2025-08-28 09:31:57 +02:00
parent ac49047177
commit 598eb44952
+1
View File
@@ -36,6 +36,7 @@ async function createSettingsIfNotExist() {
s3AccessKeyId: env.S3_ACCESS_KEY ?? null,
s3SecretAccessKey: env.S3_SECRET_KEY ?? null,
S3BucketName: env.S3_BUCKET_NAME ?? null,
};
const [existing] = await db.select().from(drizzleDb.schemas.setting).where(eq(drizzleDb.schemas.setting.name, "system")).limit(1);