Bug #17935 ยป bug_6998.diff
typo3_src-4.2.0.new/t3lib/stddb/tables.sql 2008-05-07 01:37:44.000000000 +0200 | ||
---|---|---|
editlock tinyint(4) 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,
|
||
title varchar(255) DEFAULT '' NOT NULL,
|
||
doktype tinyint(3) unsigned DEFAULT '0' NOT NULL,
|
||
TSconfig text NOT NULL,
|
||
... | ... | |
tx_impexp_origuid int(11) DEFAULT '0' NOT NULL,
|
||
PRIMARY KEY (uid),
|
||
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
|
||
KEY parent (pid,sorting)
|
||
KEY parent (pid,sorting,deleted,hidden)
|
||
);
|
||
#
|
typo3_src-4.2.0.new/typo3/sysext/cms/ext_tables.sql 2008-05-07 01:38:10.000000000 +0200 | ||
---|---|---|
#
|
||
CREATE TABLE pages (
|
||
url varchar(255) DEFAULT '' NOT NULL,
|
||
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||
starttime int(11) unsigned DEFAULT '0' NOT NULL,
|
||
endtime int(11) unsigned DEFAULT '0' NOT NULL,
|
||
urltype tinyint(4) unsigned DEFAULT '0' NOT NULL,
|
||
... | ... | |
l18n_cfg tinyint(4) DEFAULT '0' NOT NULL,
|
||
fe_login_mode tinyint(4) DEFAULT '0' NOT NULL,
|
||
KEY alias (alias),
|
||
KEY parent (pid,sorting,deleted,hidden)
|
||
);
|