Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
glpi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
GLPI
glpi
Commits
8970eacf
Commit
8970eacf
authored
Jan 07, 2021
by
Cédric Anne
Committed by
Johan Cwiklinski
Jan 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless column level collate on DB tables creation
parent
566fb624
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1010 additions
and
1010 deletions
+1010
-1010
install/mysql/glpi-empty.sql
install/mysql/glpi-empty.sql
+1007
-1007
install/update_95_xx/recurrentchange.php
install/update_95_xx/recurrentchange.php
+3
-3
No files found.
install/mysql/glpi-empty.sql
View file @
8970eacf
This source diff could not be displayed because it is too large. You can
view the blob
instead.
install/update_95_xx/recurrentchange.php
View file @
8970eacf
...
...
@@ -51,14 +51,14 @@ $recurrent_change_table = 'glpi_recurrentchanges';
if
(
!
$DB
->
tableExists
(
$recurrent_change_table
))
{
$DB
->
queryOrDie
(
"CREATE TABLE `
$recurrent_change_table
` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255)
COLLATE utf8_unicode_ci
DEFAULT NULL,
`comment` text
COLLATE utf8_unicode_ci
,
`name` varchar(255) DEFAULT NULL,
`comment` text,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`is_active` tinyint(1) NOT NULL DEFAULT '0',
`changetemplates_id` int(11) NOT NULL DEFAULT '0',
`begin_date` timestamp NULL DEFAULT NULL,
`periodicity` varchar(255)
COLLATE utf8_unicode_ci
DEFAULT NULL,
`periodicity` varchar(255) DEFAULT NULL,
`create_before` int(11) NOT NULL DEFAULT '0',
`next_creation_date` timestamp NULL DEFAULT NULL,
`calendars_id` int(11) NOT NULL DEFAULT '0',
...
...
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