-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
30 lines (28 loc) · 1.13 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
CREATE TABLE tx_ximatypo3internalnews_domain_model_news
(
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
tstamp int(11) DEFAULT '0' NOT NULL,
crdate int(11) DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
description varchar(2000) DEFAULT '' NOT NULL,
top tinyint(4) unsigned DEFAULT 0 NOT NULL,
media int (11) unsigned DEFAULT '0' NOT NULL,
dates int(11) unsigned DEFAULT '0' NOT NULL,
be_group varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (uid)
);
CREATE TABLE tx_ximatypo3internalnews_domain_model_date
(
uid int(11) NOT NULL auto_increment,
title varchar(255) DEFAULT '' NOT NULL,
type varchar(32) DEFAULT '' NOT NULL,
recurrence varchar(255) DEFAULT '' NOT NULL,
notify tinyint(4) unsigned DEFAULT 0 NOT NULL,
notify_type varchar(32) DEFAULT '' NOT NULL,
notify_message varchar(255) DEFAULT '' NOT NULL,
news int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (uid)
);