Skip to content

Commit

Permalink
Merge pull request #42 from tollwerk/develop
Browse files Browse the repository at this point in the history
Allow NULL values in file metadata
  • Loading branch information
jkphl authored Dec 16, 2020
2 parents 0ac3161 + 59628c9 commit 79dbca1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions Configuration/TypoScript/Main/Page/page_head.typoscript
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
[{$plugin.tx_twbase_javascript.observer} == 1]
page.includeJS.base_base = EXT:tw_base/Resources/Public/JavaScript/_000_Base.default.min.js#base
page.includeJS.base_polyfills = EXT:tw_base/Resources/Public/JavaScript/_005_Polyfill.default.min.js#base
page.includeJS.base_initializer = EXT:tw_base/Resources/Public/JavaScript/_015_Initializer.default.min.js#base
page.includeJS.base_observer = EXT:tw_base/Resources/Public/JavaScript/_020_Observer.default.min.js#base
[END]

Expand Down
12 changes: 6 additions & 6 deletions ext_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ CREATE TABLE tt_content
#
CREATE TABLE sys_file_metadata
(
tx_twbase_author TINYTEXT DEFAULT '' NOT NULL,
tx_twbase_author_url TINYTEXT DEFAULT '' NOT NULL,
tx_twbase_source_url TINYTEXT DEFAULT '' NOT NULL,
tx_twbase_author TINYTEXT DEFAULT '',
tx_twbase_author_url TINYTEXT DEFAULT '',
tx_twbase_source_url TINYTEXT DEFAULT '',
tx_twbase_creation_year int(11) unsigned,
tx_twbase_license VARCHAR(12) DEFAULT '' NOT NULL,
tx_twbase_license_name TINYTEXT DEFAULT '' NOT NULL,
tx_twbase_license_url TINYTEXT DEFAULT '' NOT NULL,
tx_twbase_license VARCHAR(12) DEFAULT '',
tx_twbase_license_name TINYTEXT DEFAULT '',
tx_twbase_license_url TINYTEXT DEFAULT '',
);

#
Expand Down

0 comments on commit 79dbca1

Please sign in to comment.