Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!8968
Issue
#2857359
by arnested, smustgrave, tamasd, murilohp, cosolom: Make ROW_FORMAT configurable
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#2857359
by arnested, smustgrave, tamasd, murilohp, cosolom: Make ROW_FORMAT configurable
issue/drupal-2857359:2857359-make-rowformat-configurable-11.x
into
11.x
Overview
3
Commits
2
Pipelines
5
Changes
4
All threads resolved!
Show all comments
Open
Arne Jørgensen
requested to merge
issue/drupal-2857359:2857359-make-rowformat-configurable-11.x
into
11.x
11 months ago
Overview
3
Commits
2
Pipelines
5
Changes
4
All threads resolved!
Show all comments
Expand
Closes
#2857359
0
0
Merge request reports
Compare
11.x
version 4
888c8e50
10 months ago
version 3
2c9383a4
11 months ago
version 2
9acd6f90
11 months ago
version 1
312e37ca
11 months ago
11.x (HEAD)
and
latest version
latest version
a311a25c
2 commits,
9 months ago
version 4
888c8e50
2 commits,
10 months ago
version 3
2c9383a4
1 commit,
11 months ago
version 2
9acd6f90
1 commit,
11 months ago
version 1
312e37ca
1 commit,
11 months ago
4 files
+
90
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
core/assets/scaffold/files/default.settings.php
+
10
−
0
Options
@@ -153,6 +153,16 @@
* ];
* @endcode
*
* For MySQL, MariaDB or equivalent databases the 'row_format' option can
* be set if you need to fine tune how InnoDB physically stores tables. For more
* info:
* https://dev.mysql.com/doc/refman/5.7/en/innodb-row-format.html
*
* On your settings.php, change the row format:
* @code
* $databases['default']['default']['row_format'] = 'DYNAMIC';
* @endcode
*
* You can optionally set a prefix for all database table names by using the
* 'prefix' setting. If a prefix is specified, the table name will be prepended
* with its value. Be sure to use valid database characters only, usually
Loading