@aceitadev/adatabase 0.5.9 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,7 +45,7 @@ class SchemaManager {
45
45
  if (this.changes.size === 0) {
46
46
  return;
47
47
  }
48
- console.log("Schema atualizado:");
48
+ console.log("Database Updated:");
49
49
  const tableEntries = Array.from(this.changes.entries());
50
50
  tableEntries.forEach(([table, changes], tableIndex) => {
51
51
  const isLastTable = tableIndex === tableEntries.length - 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aceitadev/adatabase",
3
- "version": "0.5.9",
3
+ "version": "0.6.0",
4
4
  "description": "Uma biblioteca para facilitar a interação com bancos de dados MySQL e PostgreSQL em projetos TypeScript/Node.js.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",