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, "sourceMaps": true,
"type": "chrome", "type": "chrome",
"webRoot": "${workspaceFolder}" "webRoot": "${workspaceFolder}"
},
{
"name": "Electron: Worker",
"cwd": "${workspaceFolder}",
"port": 9224,
"request": "attach",
"sourceMaps": true,
"type": "node",
"timeout": 1000000
} }
], ],
"compounds": [ "compounds": [

View File

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