-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathext_tables.sql
34 lines (28 loc) · 951 Bytes
/
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
# noinspection SqlNoDataSourceInspectionForFile
CREATE TABLE tx_socialdata_domain_model_feed (
name varchar(255) DEFAULT '' NOT NULL,
storage_pid int(11) unsigned,
persist_media tinyint(1) unsigned,
connector_identifier varchar(255) DEFAULT '' NOT NULL,
connector_configuration mediumtext,
connector_status tinytext,
posts int(11) unsigned DEFAULT '0' NOT NULL
);
CREATE TABLE tx_socialdata_domain_model_post (
type varchar(100) NOT NULL DEFAULT '0',
social_id varchar(255) NOT NULL DEFAULT '',
feed int(11) unsigned NOT NULL,
datetime bigint(20) unsigned DEFAULT '0' NOT NULL,
title tinytext,
content mediumtext,
url text,
media_url text,
poster_url text,
poster int(11) unsigned DEFAULT '0' NOT NULL,
KEY feed (feed),
KEY social_id (social_id)
);
CREATE TABLE tx_socialdata_domain_model_wall (
name varchar(255) DEFAULT '' NOT NULL,
feeds int(11) unsigned
);