Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
digibib
koha-docker
Commits
8ac0617d
Commit
8ac0617d
authored
Sep 13, 2018
by
Benjamin Rokseth
Browse files
Fix installer
parent
91bcc2ba
Pipeline
#810
failed with stages
in 5 minutes and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
files/installer/installer.sh
View file @
8ac0617d
...
...
@@ -165,6 +165,7 @@ apply_once() {
borrowernumber int(11) NOT NULL,
itemnumber int(11) NOT NULL,
status varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
created timestamp NOT NULL DEFAULT NOW(),
timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (issue_id),
KEY kemner_issueidx (issue_id),
...
...
@@ -214,7 +215,7 @@ EOF
borrowernumber int(11) NOT NULL,
status enum('open','reserved','captured') DEFAULT 'open',
done tinyint(1) NOT NULL DEFAULT 0,
created timestamp NOT NULL DEFAULT
CURRENT_TIMESTAMP
,
created timestamp NOT NULL DEFAULT
NOW()
,
timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (purre_id),
KEY purre_borroweridx (borrowernumber)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment