CoreCommunity ExtensionsIncubatorDistributionsTYPO3 4.5 ProjectsTYPO3 4.6 ProjectsTYPO3 4.7 ProjectsTYPO3 6.0 ProjectsTYPO3 6.1 ProjectsTYPO3 6.2 Projects (+)

Bug #34896

ext_tables.sql not compatible to extmgm

Added by Dennis Ahrens about 1 year ago. Updated about 1 year ago.

Status:Accepted Start date:2012-03-15
Priority:Should have Due date:
Assignee:- % Done:

100%

Category:-
Target version:-
Votes: 0

Description

This is just a minor bug, as there is not really any logical behaviour affected.

The ExtensionManager always wants to update some fields, because he does not understand some of the keywords written with upper letters.

Use this statement for table creation in both files ext_tables.sql and ext_tables_static+adt.sql to fix it.

CREATE TABLE tx_libconnect_domain_model_subject (
    uid int(11) NOT NULL auto_increment,
    pid int(11) DEFAULT '0' NOT NULL,
    tstamp int(11) DEFAULT '0' NOT NULL,
    crdate int(11) DEFAULT '0' NOT NULL,
    cruser_id int(11) DEFAULT '0' NOT NULL,
    deleted tinyint(4) DEFAULT '0' NOT NULL,
    hidden tinyint(4) DEFAULT '0' NOT NULL,
    title tinytext NOT NULL,
    dbisid tinytext NOT NULL,
    ezbnotation tinytext NOT NULL,

    PRIMARY KEY (uid),
    KEY parent (pid)
);

Associated revisions

History

Updated by SUB-Hamburg about 1 year ago

  • Status changed from New to Accepted
  • % Done changed from 0 to 100

Fixed in 3.0.4

Also available in: Atom PDF