Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Database_Finance
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OA_Finance
Database_Finance
Commits
3628d49b
Commit
3628d49b
authored
1 year ago
by
wohlgemu
Browse files
Options
Downloads
Patches
Plain Diff
Update file Create_Table.sql
parent
83f037f7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
script/Create_Table.sql
+1
-1
1 addition, 1 deletion
script/Create_Table.sql
with
1 addition
and
1 deletion
script/Create_Table.sql
+
1
−
1
View file @
3628d49b
...
@@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS public.finance_request
...
@@ -54,7 +54,7 @@ CREATE TABLE IF NOT EXISTS public.finance_request
issuer_update
character
varying
(
30
)
COLLATE
pg_catalog
.
"default"
DEFAULT
SESSION_USER
,
issuer_update
character
varying
(
30
)
COLLATE
pg_catalog
.
"default"
DEFAULT
SESSION_USER
,
institution
character
varying
(
70
)
COLLATE
pg_catalog
.
"default"
DEFAULT
'TU Dresden'
::
character
varying
,
institution
character
varying
(
70
)
COLLATE
pg_catalog
.
"default"
DEFAULT
'TU Dresden'
::
character
varying
,
research_article
character
varying
(
1
)
COLLATE
pg_catalog
.
"default"
NOT
NULL
DEFAULT
'o'
::
character
varying
,
research_article
character
varying
(
1
)
COLLATE
pg_catalog
.
"default"
NOT
NULL
DEFAULT
'o'
::
character
varying
,
postpayment_check
character
varying
(
1
)
COLLATE
pg_catalog
.
"default"
NOT
NULL
DEFAULT
'
o
'
::
character
varying
,
postpayment_check
character
varying
(
1
)
COLLATE
pg_catalog
.
"default"
NOT
NULL
DEFAULT
'
n
'
::
character
varying
,
CONSTRAINT
finance_request_pkey
PRIMARY
KEY
(
oa_id
),
CONSTRAINT
finance_request_pkey
PRIMARY
KEY
(
oa_id
),
CONSTRAINT
value_check_research_article1
CHECK
(
research_article
::
text
=
ANY
(
ARRAY
[
'y'
::
character
varying
,
'n'
::
character
varying
,
'o'
::
character
varying
]::
text
[])),
CONSTRAINT
value_check_research_article1
CHECK
(
research_article
::
text
=
ANY
(
ARRAY
[
'y'
::
character
varying
,
'n'
::
character
varying
,
'o'
::
character
varying
]::
text
[])),
CONSTRAINT
value_check_postpayment_check1
CHECK
(
postpayment_check
::
text
=
ANY
(
ARRAY
[
'y'
::
character
varying
,
'n'
::
character
varying
,
'o'
::
character
varying
]::
text
[])),
CONSTRAINT
value_check_postpayment_check1
CHECK
(
postpayment_check
::
text
=
ANY
(
ARRAY
[
'y'
::
character
varying
,
'n'
::
character
varying
,
'o'
::
character
varying
]::
text
[])),
...
...
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