Nice Work

This commit is contained in:
2026-01-13 19:44:02 +00:00
parent b503b372b4
commit 0718377b27
144 changed files with 15587 additions and 2132 deletions
+11
View File
@@ -0,0 +1,11 @@
import { ensureSchema } from './index.js';
ensureSchema()
.then(() => {
console.log('✅ Datenbankschema abgeglichen.');
process.exit(0);
})
.catch((error) => {
console.error('⚠️ Schema-Abgleich fehlgeschlagen:', error);
process.exit(1);
});