Index: typo3/sysext/cms/ext_tables.php =================================================================== --- typo3/sysext/cms/ext_tables.php (revision 2504) +++ typo3/sysext/cms/ext_tables.php (working copy) @@ -505,6 +505,8 @@ 'label_alt' => 'subheader,bodytext', 'sortby' => 'sorting', 'tstamp' => 'tstamp', + 'crdate' => 'crdate', + 'cruser_id' => 'cruser_id', 'title' => 'LLL:EXT:cms/locallang_tca.php:tt_content', 'delete' => 'deleted', 'versioningWS' => 2, Index: typo3/sysext/cms/ext_tables.sql =================================================================== --- typo3/sysext/cms/ext_tables.sql (revision 2504) +++ typo3/sysext/cms/ext_tables.sql (working copy) @@ -300,6 +300,8 @@ t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, + crdate int(11) unsigned DEFAULT '0' NOT NULL, + cruser_id int(11) unsigned DEFAULT '0' NOT NULL, hidden tinyint(4) unsigned DEFAULT '0' NOT NULL, sorting int(11) unsigned DEFAULT '0' NOT NULL, CType varchar(30) DEFAULT '' NOT NULL,