This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimport.sql
194 lines (179 loc) · 8.21 KB
/
import.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
# comment this out if your server has a different table/location for phone_number
# or if it already exists in the users table
# ALTER TABLE `users` ADD COLUMN `phone_number` VARCHAR(20) DEFAULT NULL;
# if you already have the npwd_message table without `is_embed` and `embed`, run this query in your sql console
# ALTER TABLE npwd_messages ADD COLUMN `is_embed` tinyint(4) NOT NULL DEFAULT 0;
# ALTER TABLE npwd_messages ADD COLUMN `embed` varchar(512) NOT NULL DEFAULT '';
CREATE TABLE IF NOT EXISTS `npwd_twitter_profiles`
(
`id` int NOT NULL AUTO_INCREMENT,
`profile_name` varchar(90) NOT NULL,
`identifier` varchar(48) NOT NULL,
# Default Profile avatar can be set here
`avatar_url` varchar(255) DEFAULT 'https://i.file.glass/QrEvq.png',
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `profile_name_UNIQUE` (`profile_name`),
INDEX `identifier` (`identifier`)
);
CREATE TABLE IF NOT EXISTS `npwd_phone_contacts`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(48) DEFAULT NULL,
`avatar` varchar(255) DEFAULT NULL,
`number` varchar(20) DEFAULT NULL,
`display` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
INDEX `identifier` (`identifier`)
);
CREATE TABLE `npwd_twitter_tweets`
(
`id` INT(11) NOT NULL AUTO_INCREMENT,
`message` VARCHAR(1000) NOT NULL COLLATE 'utf8mb4_general_ci',
`createdAt` TIMESTAMP NOT NULL DEFAULT current_timestamp(),
`updatedAt` TIMESTAMP NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`likes` INT(11) NOT NULL DEFAULT '0',
`identifier` VARCHAR(48) NOT NULL COLLATE 'utf8mb4_general_ci',
`visible` TINYINT(4) NOT NULL DEFAULT '1',
`images` VARCHAR(1000) NULL DEFAULT '' COLLATE 'utf8mb4_general_ci',
`retweet` INT(11) NULL DEFAULT NULL,
`profile_id` INT(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE,
INDEX `npwd_twitter_tweets_npwd_twitter_profiles_id_fk` (`profile_id`) USING BTREE,
CONSTRAINT `npwd_twitter_tweets_npwd_twitter_profiles_id_fk` FOREIGN KEY (`profile_id`) REFERENCES `npwd_twitter_profiles` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
);
CREATE TABLE IF NOT EXISTS `npwd_twitter_likes`
(
`id` int NOT NULL AUTO_INCREMENT,
`profile_id` int NOT NULL,
`tweet_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unique_combination` (`profile_id`, `tweet_id`),
KEY `profile_idx` (`profile_id`),
KEY `tweet_idx` (`tweet_id`),
CONSTRAINT `profile` FOREIGN KEY (`profile_id`) REFERENCES `npwd_twitter_profiles` (`id`),
CONSTRAINT `tweet` FOREIGN KEY (`tweet_id`) REFERENCES `npwd_twitter_tweets` (`id`) ON DELETE CASCADE
);
CREATE TABLE IF NOT EXISTS `npwd_match_profiles`
(
`id` int NOT NULL AUTO_INCREMENT,
`identifier` varchar(48) NOT NULL,
`name` varchar(90) NOT NULL,
`image` varchar(255) NOT NULL,
`bio` varchar(512) DEFAULT NULL,
`location` varchar(45) DEFAULT NULL,
`job` varchar(45) DEFAULT NULL,
`tags` varchar(255) NOT NULL DEFAULT '',
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `identifier_UNIQUE` (`identifier`)
);
CREATE TABLE IF NOT EXISTS `npwd_match_views`
(
`id` int NOT NULL AUTO_INCREMENT,
`identifier` varchar(48) NOT NULL,
`profile` int NOT NULL,
`liked` tinyint DEFAULT '0',
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `match_profile_idx` (`profile`),
CONSTRAINT `match_profile` FOREIGN KEY (`profile`) REFERENCES `npwd_match_profiles` (`id`),
INDEX `identifier` (`identifier`)
);
CREATE TABLE IF NOT EXISTS `npwd_notes`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(48) NOT NULL,
`title` varchar(255) NOT NULL,
`content` varchar(255) NOT NULL,
PRIMARY KEY (id),
INDEX `identifier` (`identifier`)
);
CREATE TABLE IF NOT EXISTS `npwd_marketplace_listings`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(48) DEFAULT NULL,
`username` varchar(255) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`number` varchar(255) NOT NULL,
`title` varchar(255) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
`description` varchar(255) NOT NULL,
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`reported` tinyint NOT NULL DEFAULT 0,
PRIMARY KEY (id),
INDEX `identifier` (`identifier`)
);
CREATE TABLE IF NOT EXISTS `npwd_twitter_reports`
(
`id` int NOT NULL AUTO_INCREMENT,
`profile_id` int NOT NULL,
`tweet_id` int NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unique_combination` (`profile_id`, `tweet_id`),
KEY `profile_idx` (`profile_id`),
KEY `tweet_idx` (`tweet_id`),
CONSTRAINT `report_profile` FOREIGN KEY (`profile_id`) REFERENCES `npwd_twitter_profiles` (`id`),
CONSTRAINT `report_tweet` FOREIGN KEY (`tweet_id`) REFERENCES `npwd_twitter_tweets` (`id`) ON DELETE CASCADE
);
CREATE TABLE IF NOT EXISTS `npwd_messages`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`message` varchar(512) NOT NULL,
`user_identifier` varchar(48) NOT NULL,
`conversation_id` varchar(512) NOT NULL,
`isRead` tinyint(4) NOT NULL DEFAULT 0,
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP(),
`updatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP,
`visible` tinyint(4) NOT NULL DEFAULT 1,
`author` varchar(255) NOT NULL,
`is_embed` tinyint(4) NOT NULL default 0,
`embed` varchar(512) NOT NULL DEFAULT '',
PRIMARY KEY (id),
INDEX `user_identifier` (`user_identifier`)
);
CREATE TABLE `npwd_messages_conversations`
(
`id` INT(11) NOT NULL AUTO_INCREMENT,
`conversation_list` VARCHAR(225) NOT NULL COLLATE 'utf8mb4_general_ci',
`label` VARCHAR(60) NULL DEFAULT '' COLLATE 'utf8mb4_general_ci',
`createdAt` TIMESTAMP NOT NULL DEFAULT current_timestamp(),
`updatedAt` TIMESTAMP NOT NULL DEFAULT current_timestamp(),
`last_message_id` INT(11) NULL DEFAULT NULL,
`is_group_chat` TINYINT(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`) USING BTREE
);
CREATE TABLE `npwd_messages_participants`
(
`id` INT(11) NOT NULL AUTO_INCREMENT,
`conversation_id` INT(11) NOT NULL,
`participant` VARCHAR(225) NOT NULL COLLATE 'utf8mb4_general_ci',
`unread_count` INT(11) NULL DEFAULT '0',
PRIMARY KEY (`id`) USING BTREE,
INDEX `message_participants_npwd_messages_conversations_id_fk` (`conversation_id`) USING BTREE,
CONSTRAINT `message_participants_npwd_messages_conversations_id_fk` FOREIGN KEY (`conversation_id`) REFERENCES `npwd_messages_conversations` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT
);
CREATE TABLE IF NOT EXISTS `npwd_calls`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(48) DEFAULT NULL,
`transmitter` varchar(255) NOT NULL,
`receiver` varchar(255) NOT NULL,
`is_accepted` tinyint(4) DEFAULT 0,
`start` varchar(255) DEFAULT NULL,
end varchar(255) DEFAULT NULL,
PRIMARY KEY (id),
INDEX `identifier` (`identifier`)
);
CREATE TABLE IF NOT EXISTS `npwd_phone_gallery`
(
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(48) DEFAULT NULL,
`image` varchar(255) NOT NULL,
PRIMARY KEY (id),
INDEX `identifier` (`identifier`)
);