Skip to content

Commit

Permalink
[BUGFIX] mySQL text field
Browse files Browse the repository at this point in the history
No default values for text fields in PHP 7.4+
  • Loading branch information
Zillion01 committed May 12, 2022
1 parent 1987373 commit 1df4dfa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Documentation/ChangeLog/Index.rst
Expand Up @@ -20,3 +20,4 @@ ChangeLog
* 1.1.1 TYPO3 10.4 support + bugfixes
* 1.1.2 Added export settings
* 11.5.0 TYPO3 11.5 release. Removed migration script.
* 11.5.1 bugfix SQL no default value for text fields
2 changes: 1 addition & 1 deletion Documentation/Settings.cfg
Expand Up @@ -27,7 +27,7 @@ project = Uniform product names
# ... (recommended) version, displayed next to title (desktop) and in <meta name="book-version"
# .................................................................................

release = 11.5.0
release = 11.5.1

# .................................................................................
# ... (recommended) displayed in footer
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Expand Up @@ -10,7 +10,7 @@
'uploadfolder' => 0,
'createDirs' => 'typo3temp/pn_uniform_product_names',
'clearCacheOnLoad' => 0,
'version' => '11.5.0',
'version' => '11.5.1',
'constraints' => [
'depends' => [
'typo3' => '11.5.8-11.5.99',
Expand Down
4 changes: 2 additions & 2 deletions ext_tables.sql
Expand Up @@ -8,11 +8,11 @@ CREATE TABLE pages
uniform_product_names_uniforme_productnaam text,
uniform_product_names_gerelateerd_product text,
uniform_product_names_product_html text,
uniform_product_names_language text DEFAULT 'nl' NOT NULL
uniform_product_names_language varchar(255) DEFAULT 'nl' NOT NULL
);

CREATE TABLE tx_pnuniformproductnames_domain_model_uniformeproductnamen
(
title varchar(255) DEFAULT '' NOT NULL,
uri text DEFAULT '' NOT NULL
uri text
);

0 comments on commit 1df4dfa

Please sign in to comment.