fix(PostgreSQL): error adding MONEY fields to a table

This commit is contained in:
Fabio Di Stasio 2023-12-28 10:13:28 +01:00
parent 219f89aa60
commit 0f8d2cb4ef
2 changed files with 1 additions and 10 deletions

9
.vscode/launch.json vendored
View File

@ -17,15 +17,6 @@
"sourceMaps": true,
"type": "chrome",
"webRoot": "${workspaceFolder}"
},
{
"name": "Electron: Worker",
"cwd": "${workspaceFolder}",
"port": 9224,
"request": "attach",
"sourceMaps": true,
"type": "node",
"timeout": 1000000
}
],
"compounds": [

View File

@ -66,7 +66,7 @@ export default [
group: 'monetary',
types: [
{
name: 'money',
name: 'MONEY',
length: false,
unsigned: true
}