Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAIR Data Austria DB Repository
DBRepo
Commits
d8f68f59
Verified
Commit
d8f68f59
authored
1 year ago
by
Martin Weise
Browse files
Options
Downloads
Patches
Plain Diff
Updated default value to suggest useful decimal points
parent
d0cc05bf
Branches
Branches containing commit
Tags
Tags containing commit
3 merge requests
!231
CI: Remove build for log-service
,
!228
Better error message handling in the frontend
,
!223
Release of version 1.4.0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
dbrepo-ui/api/query.mapper.js
+2
-2
2 additions, 2 deletions
dbrepo-ui/api/query.mapper.js
with
2 additions
and
2 deletions
dbrepo-ui/api/query.mapper.js
+
2
−
2
View file @
d8f68f59
...
@@ -23,8 +23,8 @@ class QueryMapper {
...
@@ -23,8 +23,8 @@ class QueryMapper {
{
value
:
'
mediumint
'
,
text
:
'
MEDIUMINT(size)
'
,
defaultSize
:
10
},
{
value
:
'
mediumint
'
,
text
:
'
MEDIUMINT(size)
'
,
defaultSize
:
10
},
{
value
:
'
bigint
'
,
text
:
'
BIGINT(size)
'
,
defaultSize
:
255
},
{
value
:
'
bigint
'
,
text
:
'
BIGINT(size)
'
,
defaultSize
:
255
},
{
value
:
'
float
'
,
text
:
'
FLOAT(p)
'
,
defaultSize
:
24
},
{
value
:
'
float
'
,
text
:
'
FLOAT(p)
'
,
defaultSize
:
24
},
{
value
:
'
double
'
,
text
:
'
DOUBLE(size, d)
'
,
defaultSize
:
25
,
defaultD
:
0
},
{
value
:
'
double
'
,
text
:
'
DOUBLE(size, d)
'
,
defaultSize
:
25
,
defaultD
:
4
},
{
value
:
'
decimal
'
,
text
:
'
DECIMAL(size, d)
'
,
defaultSize
:
10
,
defaultD
:
0
},
{
value
:
'
decimal
'
,
text
:
'
DECIMAL(size, d)
'
,
defaultSize
:
10
,
defaultD
:
4
},
{
value
:
'
date
'
,
text
:
'
DATE
'
},
{
value
:
'
date
'
,
text
:
'
DATE
'
},
{
value
:
'
datetime
'
,
text
:
'
DATETIME(fsp)
'
},
{
value
:
'
datetime
'
,
text
:
'
DATETIME(fsp)
'
},
{
value
:
'
timestamp
'
,
text
:
'
TIMESTAMP(fsp)
'
},
{
value
:
'
timestamp
'
,
text
:
'
TIMESTAMP(fsp)
'
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment