mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
treat numeric as an alias for decimal
This commit is contained in:
parent
4b01eaf6cc
commit
53f17a71d1
1 changed files with 3 additions and 0 deletions
|
|
@ -150,6 +150,9 @@ class MDB2SchemaReader {
|
|||
case 'timestamp':
|
||||
$type = 'datetime';
|
||||
break;
|
||||
case 'numeric':
|
||||
$type = 'decimal';
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 'length':
|
||||
|
|
|
|||
Loading…
Reference in a new issue