forked from nxpthx/typo3-upgradereport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
41 lines (38 loc) · 1.27 KB
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# Table structure for table 'tx_smoothmigration_domain_model_issue'
#
CREATE TABLE tx_smoothmigration_domain_model_issue (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
inspection varchar(255) DEFAULT '' NOT NULL,
identifier varchar(255) DEFAULT '' NOT NULL,
extension varchar(255) DEFAULT '' NOT NULL,
location_info text,
additional_info text,
migration_status int(1) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# Table structure for table 'tx_smoothmigration_domain_model_deprecation'
#
CREATE TABLE tx_smoothmigration_domain_model_deprecation (
uid int(11) unsigned NOT NULL auto_increment,
file mediumtext ,
class varchar(255) DEFAULT '',
interface varchar(255) DEFAULT '',
method varchar(255) DEFAULT '',
message mediumtext,
is_static int(1) unsigned DEFAULT '0' NOT NULL,
visibility varchar(10) DEFAULT '',
deprecated_since_version varchar(10) DEFAULT '',
removed_in_version varchar(10) DEFAULT '',
replacement_class varchar(255) DEFAULT '',
replacement_interface varchar(255) DEFAULT '',
replacement_method varchar(255) DEFAULT '',
regex_search varchar(255) DEFAULT '',
regex_replace varchar(255) DEFAULT '',
no_brainer int(1) unsigned DEFAULT '0' NOT NULL,
replacement_message mediumtext,
PRIMARY KEY (uid)
);