mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fix literal linting
This commit is contained in:
parent
0e1753f33d
commit
2391af5ba7
@ -429,10 +429,14 @@ abstract class DBSchemaManager
|
||||
|
||||
if (isset(static::$table_name_warnings[$table])) {
|
||||
if (!$table_name_info_sent) {
|
||||
$this->alterationMessage('<strong>Please note:</strong> It is strongly recommended to define a' .
|
||||
' table_name for all namespaced models. Not defining a table_name may cause generated table' .
|
||||
' names to be too long and may not be supported by your current database engine. The generated' .
|
||||
' naming scheme will also change when upgrading to SilverStripe 5.0 and potentially break.',
|
||||
$this->alterationMessage(
|
||||
<<<'MESSAGE'
|
||||
<strong>Please note:</strong> It is strongly recommended to define a
|
||||
table_name for all namespaced models. Not defining a table_name may cause generated table
|
||||
names to be too long and may not be supported by your current database engine. The generated
|
||||
naming scheme will also change when upgrading to SilverStripe 5.0 and potentially break.
|
||||
MESSAGE
|
||||
,
|
||||
'error'
|
||||
);
|
||||
$table_name_info_sent = true;
|
||||
|
Loading…
Reference in New Issue
Block a user