Update application features and add scripts (core changes)

This commit is contained in:
AyrisAI
2026-07-19 11:38:56 +03:00
parent a36b833e00
commit da84cdc231
44 changed files with 2953 additions and 449 deletions
+8
View File
@@ -0,0 +1,8 @@
import { db } from './lib/db';
async function run() {
const rooms = await db.room.findMany();
for (const r of rooms) {
if (r.images.length > 0) console.log(r.nameTr, r.images[0]);
}
}
run();