Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
LQDN Adminsys
don
Commits
04fd087c
Commit
04fd087c
authored
Nov 09, 2020
by
Bastien Le Querrec
Browse files
increase the identifier max size in DB
We have a lot of identifiers with size>20 after 2019-04.
parent
54801161
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
db/migrations/20201109223011_increase_identifier_length.php
0 → 100644
View file @
04fd087c
<?php
use
Phinx\Migration\AbstractMigration
;
class
IncreaseIdentifierLength
extends
AbstractMigration
{
public
function
change
()
{
$this
->
adapter
->
execute
(
"ALTER TABLE dons modify COLUMN identifier VARCHAR(255) NULL;"
);
}
}
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment