-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
74 lines (60 loc) · 2.05 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
CREATE TABLE tx_inv_domain_model_item (
size int(11) DEFAULT '0' NOT NULL,
season int(11) DEFAULT '0' NOT NULL
);
CREATE TABLE tx_inv_domain_model_location (
name varchar(255) NOT NULL DEFAULT ''
);
CREATE TABLE tx_inv_domain_model_shop (
name varchar(255) NOT NULL DEFAULT '',
link varchar(255) NOT NULL DEFAULT ''
);
CREATE TABLE tx_inv_domain_model_item (
name varchar(255) NOT NULL DEFAULT '',
slug varchar(255) NOT NULL DEFAULT '',
image int(11) unsigned NOT NULL DEFAULT '0',
price double(11,2) NOT NULL DEFAULT '0.00',
item_condition int(11) DEFAULT '0' NOT NULL,
description text NOT NULL DEFAULT '',
status int(11) DEFAULT '0' NOT NULL,
location int(11) unsigned DEFAULT '0',
shop int(11) unsigned DEFAULT '0',
tx_extbase_type varchar(255) DEFAULT '' NOT NULL
);
CREATE TABLE tx_inv_domain_model_item (
link varchar(255) NOT NULL DEFAULT '',
digital smallint(1) unsigned NOT NULL DEFAULT '0',
platform int(11) unsigned NOT NULL DEFAULT '0'
);
CREATE TABLE tx_inv_domain_model_item (
platform int(11) unsigned NOT NULL DEFAULT '0'
);
CREATE TABLE tx_inv_domain_model_medium (
name varchar(255) NOT NULL DEFAULT '',
size double(11,2) NOT NULL DEFAULT '0.00'
);
CREATE TABLE tx_inv_domain_model_platform (
name varchar(255) NOT NULL DEFAULT '',
link varchar(255) NOT NULL DEFAULT '',
thumbnail int(11) unsigned NOT NULL DEFAULT '0'
);
CREATE TABLE tx_inv_domain_model_item (
categories int(11) unsigned DEFAULT '0' NOT NULL
);
CREATE TABLE tx_inv_domain_model_item (
categories int(11) unsigned DEFAULT '0' NOT NULL
);
CREATE TABLE tx_inv_domain_model_item (
categories int(11) unsigned DEFAULT '0' NOT NULL
);
CREATE TABLE tx_inv_domain_model_item (
categories int(11) unsigned DEFAULT '0' NOT NULL
);
CREATE TABLE tx_inv_domain_model_medium (
categories int(11) unsigned DEFAULT '0' NOT NULL
);
## EXTENSION BUILDER DEFAULTS END TOKEN - Everything BEFORE this line is overwritten with the defaults of the extension builder
CREATE TABLE tx_inv_domain_model_item (
size varchar(255) NOT NULL DEFAULT '',
season varchar(255) NOT NULL DEFAULT '',
);