-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathext_tables.sql
57 lines (49 loc) · 1.46 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
#
# Table structure for table 'tx_blogexample_domain_model_blog'
#
CREATE TABLE tx_blogexample_domain_model_blog (
title varchar(255) DEFAULT '' NOT NULL,
subtitle varchar(255) DEFAULT '',
);
#
# Table structure for table 'tx_blogexample_domain_model_post'
#
CREATE TABLE tx_blogexample_domain_model_post (
title varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_blogexample_domain_model_comment'
#
CREATE TABLE tx_blogexample_domain_model_comment (
author varchar(255) DEFAULT '' NOT NULL,
email varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_blogexample_domain_model_person'
#
CREATE TABLE tx_blogexample_domain_model_person (
firstname varchar(255) DEFAULT '' NOT NULL,
lastname varchar(255) DEFAULT '' NOT NULL,
email varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_blogexample_domain_model_tag'
#
CREATE TABLE tx_blogexample_domain_model_tag (
name varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_blogexample_domain_model_info'
#
CREATE TABLE tx_blogexample_domain_model_info (
name varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_blogexample_domain_model_tag_mm'
# @TODO fix tx_blogexample_domain_model_person to create and recognize this mm-table
# with the field `fieldname` automatically, remove this entry
# @see https://forge.typo3.org/issues/98322
#
CREATE TABLE `tx_blogexample_domain_model_tag_mm` (
`fieldname` varchar(63) DEFAULT '' NOT NULL
);