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
bcb9e515
Commit
bcb9e515
authored
2 years ago
by
Martin Weise
Browse files
Options
Downloads
Plain Diff
Merge branch '294-fix-date-timestamp-formats' into 'dev'
Added date var See merge request
!153
parents
d52cf452
207a7a13
No related branches found
No related tags found
2 merge requests
!163
Relase 1.3.0
,
!153
Added date var
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
dbrepo-metadata-db/setup-schema.sql
+2
-1
2 additions, 1 deletion
dbrepo-metadata-db/setup-schema.sql
with
2 additions
and
1 deletion
dbrepo-metadata-db/setup-schema.sql
+
2
−
1
View file @
bcb9e515
...
@@ -559,6 +559,7 @@ VALUES ('ROOT', 'root', 'PRIVILEGED_USERNAME', 1),
...
@@ -559,6 +559,7 @@ VALUES ('ROOT', 'root', 'PRIVILEGED_USERNAME', 1),
INSERT
INTO
mdb_images_date
(
iid
,
database_format
,
unix_format
,
example
,
has_time
)
INSERT
INTO
mdb_images_date
(
iid
,
database_format
,
unix_format
,
example
,
has_time
)
VALUES
(
1
,
'%Y-%c-%d %H:%i:%S.%f'
,
'yyyy-MM-dd HH:mm:ss.SSSSSS'
,
'2022-01-30 13:44:25.499'
,
true
),
VALUES
(
1
,
'%Y-%c-%d %H:%i:%S.%f'
,
'yyyy-MM-dd HH:mm:ss.SSSSSS'
,
'2022-01-30 13:44:25.499'
,
true
),
(
1
,
'%Y-%c-%d %H:%i:%S'
,
'yyyy-MM-dd HH:mm:ss'
,
'2022-01-30 13:44:25'
,
true
);
(
1
,
'%Y-%c-%d %H:%i:%S'
,
'yyyy-MM-dd HH:mm:ss'
,
'2022-01-30 13:44:25'
,
true
),
(
1
,
'%Y-%c-%d'
,
'yyyy-MM-dd'
,
'2022-01-30'
,
false
);
COMMIT
;
COMMIT
;
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