Working on the retention system.

This commit is contained in:
charlesgauthereau
2025-08-28 09:32:30 +02:00
parent 598eb44952
commit 59dc3b71b8
-1
View File
@@ -36,7 +36,6 @@ 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);