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
+9
View File
@@ -0,0 +1,9 @@
import 'dotenv/config';
import { db } from './lib/db';
async function run() {
const rooms = await db.room.findMany({ orderBy: { createdAt: 'asc' } });
for (const r of rooms) {
console.log(r.nameTr, r.images[0]);
}
}
run();