deleted tinyint(1) unsigned DEFAULT '0' NOT NULL,
TSconfig text,
subgroup text,
- hide_in_lists tinyint(4) DEFAULT '0' NOT NULL,
workspace_perms tinyint(3) DEFAULT '1' NOT NULL,
- category_perms varchar(255) DEFAULT '' NOT NULL,
+ category_perms text,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
CREATE TABLE be_sessions (
ses_id varchar(32) DEFAULT '' NOT NULL,
- ses_name varchar(32) DEFAULT '' NOT NULL,
ses_iplock varchar(39) DEFAULT '' NOT NULL,
- ses_hashlock int(11) DEFAULT '0' NOT NULL,
ses_userid int(11) unsigned DEFAULT '0' NOT NULL,
ses_tstamp int(11) unsigned DEFAULT '0' NOT NULL,
- ses_data longtext,
+ ses_data longblob,
ses_backuserid int(11) NOT NULL default '0',
- PRIMARY KEY (ses_id,ses_name),
+ PRIMARY KEY (ses_id),
KEY ses_tstamp (ses_tstamp)
);
disable tinyint(1) unsigned DEFAULT '0' NOT NULL,
starttime int(11) unsigned DEFAULT '0' NOT NULL,
endtime int(11) unsigned DEFAULT '0' NOT NULL,
- lang char(2) DEFAULT '' NOT NULL,
+ lang varchar(6) DEFAULT '' NOT NULL,
email varchar(80) DEFAULT '' NOT NULL,
db_mountpoints text,
options tinyint(4) unsigned DEFAULT '0' NOT NULL,
realName varchar(80) DEFAULT '' NOT NULL,
userMods text,
allowed_languages varchar(255) DEFAULT '' NOT NULL,
- uc mediumtext,
+ uc mediumblob,
file_mountpoints text,
file_permissions text,
workspace_perms tinyint(3) DEFAULT '1' NOT NULL,
usergroup_cached_list text,
workspace_id int(11) DEFAULT '0' NOT NULL,
workspace_preview tinyint(3) DEFAULT '1' NOT NULL,
- category_perms varchar(255) DEFAULT '' NOT NULL,
+ category_perms text,
PRIMARY KEY (uid),
KEY parent (pid),
KEY username (username)
TSconfig text,
is_siteroot tinyint(4) DEFAULT '0' NOT NULL,
php_tree_stop tinyint(4) DEFAULT '0' NOT NULL,
- tx_impexp_origuid int(11) DEFAULT '0' NOT NULL,
url varchar(255) DEFAULT '' 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,
shortcut int(10) unsigned DEFAULT '0' NOT NULL,
shortcut_mode int(10) unsigned DEFAULT '0' NOT NULL,
- no_cache int(10) unsigned DEFAULT '0' NOT NULL,
fe_group varchar(100) DEFAULT '0' NOT NULL,
subtitle varchar(255) DEFAULT '' NOT NULL,
layout int(11) unsigned DEFAULT '0' NOT NULL,
- url_scheme tinyint(3) unsigned DEFAULT '0' NOT NULL,
target varchar(80) DEFAULT '' NOT NULL,
- media text,
+ media int(11) unsigned DEFAULT '0' NOT NULL,
lastUpdated int(10) unsigned DEFAULT '0' NOT NULL,
keywords text,
cache_timeout int(10) unsigned DEFAULT '0' NOT NULL,
no_search tinyint(3) unsigned DEFAULT '0' NOT NULL,
SYS_LASTCHANGED int(10) unsigned DEFAULT '0' NOT NULL,
abstract text,
- module varchar(10) DEFAULT '' NOT NULL,
+ module varchar(255) DEFAULT '' NOT NULL,
extendToSubpages tinyint(3) unsigned DEFAULT '0' NOT NULL,
author varchar(255) DEFAULT '' NOT NULL,
author_email varchar(80) DEFAULT '' NOT NULL,
fe_login_mode tinyint(4) DEFAULT '0' NOT NULL,
backend_layout varchar(64) DEFAULT '' NOT NULL,
backend_layout_next_level varchar(64) DEFAULT '' NOT NULL,
+ tsconfig_includes text,
PRIMARY KEY (uid),
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
KEY parent (pid,deleted,sorting),
uid int(11) unsigned NOT NULL auto_increment,
entry_namespace varchar(128) DEFAULT '' NOT NULL,
entry_key varchar(128) DEFAULT '' NOT NULL,
- entry_value blob,
+ entry_value mediumblob,
PRIMARY KEY (uid),
UNIQUE KEY entry_identifier (entry_namespace,entry_key)
);
is_public tinyint(4) DEFAULT '0' NOT NULL,
is_writable tinyint(4) DEFAULT '0' NOT NULL,
is_online tinyint(4) DEFAULT '1' NOT NULL,
+ auto_extract_metadata tinyint(4) DEFAULT '1' NOT NULL,
processingfolder tinytext,
PRIMARY KEY (uid),
# Language fields
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l10n_parent int(11) DEFAULT '0' NOT NULL,
- l10n_diffsource mediumblob NOT NULL,
+ l10n_diffsource mediumblob,
# Versioning fields
t3ver_oid int(11) DEFAULT '0' NOT NULL,
# Language fields
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l10n_parent int(11) DEFAULT '0' NOT NULL,
- l10n_diffsource mediumblob NOT NULL,
+ l10n_diffsource mediumblob,
# Reference fields (basically same as MM table)
uid_local int(11) DEFAULT '0' NOT NULL,
# Local usage overlay fields
title tinytext,
description text,
- alternative tinytext,
+ alternative text,
link varchar(1024) DEFAULT '' NOT NULL,
- downloadname tinytext,
crop varchar(4000) DEFAULT '' NOT NULL,
+ autoplay tinyint(4) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid,deleted),
KEY tablenames_fieldname (tablenames(32),fieldname(12)),
KEY deleted (deleted),
- KEY uid_foreign (uid_foreign)
+ KEY uid_local (uid_local),
+ KEY uid_foreign (uid_foreign),
+ KEY combined_1 (l10n_parent, t3ver_oid, t3ver_wsid, t3ver_state, deleted)
);
# for type=folder:
storage int(11) DEFAULT '0' NOT NULL,
- folder text NOT NULL,
+ folder text,
recursive tinyint(4) DEFAULT '0' NOT NULL,
# for type=category:
hidden tinyint(4) DEFAULT '0' NOT NULL,
starttime int(11) DEFAULT '0' NOT NULL,
endtime int(11) DEFAULT '0' NOT NULL,
- fe_group int(11) DEFAULT '0' NOT NULL,
+ fe_group varchar(100) DEFAULT '0' NOT NULL,
title tinytext,
description text,
CREATE TABLE sys_history (
uid int(11) unsigned NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
- sys_log_uid int(11) DEFAULT '0' NOT NULL,
- history_data mediumtext,
- fieldlist text,
+ actiontype tinyint(3) DEFAULT '0' NOT NULL,
+ usertype varchar(2) DEFAULT 'BE' NOT NULL,
+ userid int(11) unsigned,
+ originaluserid int(11) unsigned,
recuid int(11) DEFAULT '0' NOT NULL,
tablename varchar(255) DEFAULT '' NOT NULL,
tstamp int(11) DEFAULT '0' NOT NULL,
- history_files mediumtext,
- snapshot int(11) DEFAULT '0' NOT NULL,
+ history_data mediumtext,
+ workspace int(11) DEFAULT '0',
+
PRIMARY KEY (uid),
KEY parent (pid),
KEY recordident_1 (tablename,recuid),
- KEY recordident_2 (tablename,tstamp),
- KEY sys_log_uid (sys_log_uid)
+ KEY recordident_2 (tablename,tstamp)
) ENGINE=InnoDB;
#
hash varchar(32) DEFAULT '' NOT NULL,
tablename varchar(255) DEFAULT '' NOT NULL,
recuid int(11) DEFAULT '0' NOT NULL,
- field varchar(40) DEFAULT '' NOT NULL,
+ field varchar(64) DEFAULT '' NOT NULL,
flexpointer varchar(255) DEFAULT '' NOT NULL,
softref_key varchar(30) DEFAULT '' NOT NULL,
softref_id varchar(40) DEFAULT '' NOT NULL,
workspace int(11) DEFAULT '0' NOT NULL,
ref_table varchar(255) DEFAULT '' NOT NULL,
ref_uid int(11) DEFAULT '0' NOT NULL,
- ref_string varchar(200) DEFAULT '' NOT NULL,
+ ref_string varchar(1024) DEFAULT '' NOT NULL,
PRIMARY KEY (hash),
- KEY lookup_rec (tablename,recuid),
- KEY lookup_uid (ref_table,ref_uid),
- KEY lookup_string (ref_string)
+ KEY lookup_rec (tablename(240),recuid),
+ KEY lookup_uid (ref_table(240),ref_uid),
+ KEY lookup_string (ref_string(255))
);
#
tablename varchar(255) DEFAULT '' NOT NULL,
recpid int(11) DEFAULT '0' NOT NULL,
error tinyint(4) unsigned DEFAULT '0' NOT NULL,
- details text NOT NULL,
+ details text,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
type tinyint(3) unsigned DEFAULT '0' NOT NULL,
- details_nr tinyint(3) unsigned DEFAULT '0' NOT NULL,
+ details_nr tinyint(3) DEFAULT '0' NOT NULL,
IP varchar(39) DEFAULT '' NOT NULL,
log_data text,
event_pid int(11) DEFAULT '-1' NOT NULL,
workspace int(11) DEFAULT '0' NOT NULL,
- NEWid varchar(20) DEFAULT '' NOT NULL,
+ NEWid varchar(30) DEFAULT '' NOT NULL,
request_id varchar(13) DEFAULT '' NOT NULL,
time_micro float DEFAULT '0' NOT NULL,
component varchar(255) DEFAULT '' NOT NULL,
KEY event (userid,event_pid),
KEY recuidIdx (recuid,uid),
KEY user_auth (type,action,tstamp),
- KEY request (request_id)
+ KEY request (request_id),
+ KEY combined_1 (tstamp, type, userid)
) ENGINE=InnoDB;
#
flag varchar(20) DEFAULT '' NOT NULL,
language_isocode varchar(2) DEFAULT '' NOT NULL,
static_lang_isocode int(11) unsigned DEFAULT '0' NOT NULL,
+ sorting int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l10n_parent int(11) DEFAULT '0' NOT NULL,
- l10n_diffsource mediumblob NOT NULL,
+ l10n_diffsource mediumblob,
title tinytext NOT NULL,
- description text NOT NULL,
+ description text,
parent int(11) DEFAULT '0' NOT NULL,
items int(11) DEFAULT '0' NOT NULL,