This repository has been archived by the owner on Feb 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
hitokoto.sql
262 lines (220 loc) · 7.02 KB
/
hitokoto.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
-- phpMyAdmin SQL Dump
-- version 4.4.15.6
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: 2017-01-07 20:11:48
-- 服务器版本: 5.5.48-log
-- PHP Version: 5.6.22
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `hitokoto`
--
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_like`
--
CREATE TABLE IF NOT EXISTS `hitokoto_like` (
`ID` int(11) NOT NULL,
`sentenceID` int(11) NOT NULL,
`ip` text NOT NULL,
`time` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_migrations`
--
CREATE TABLE IF NOT EXISTS `hitokoto_migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_password_resets`
--
CREATE TABLE IF NOT EXISTS `hitokoto_password_resets` (
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_pending`
--
CREATE TABLE IF NOT EXISTS `hitokoto_pending` (
`id` int(11) NOT NULL,
`hitokoto` varchar(255) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`from` varchar(255) DEFAULT NULL,
`creator` varchar(255) DEFAULT NULL,
`creator_uid` int(11) DEFAULT NULL,
`owner` varchar(255) DEFAULT '0',
`created_at` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_refuse`
--
CREATE TABLE IF NOT EXISTS `hitokoto_refuse` (
`id` int(11) NOT NULL,
`hitokoto` text,
`type` text,
`from` text,
`creator` text,
`creator_uid` int(11) NOT NULL,
`owner` text,
`created_at` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_sentence`
--
CREATE TABLE IF NOT EXISTS `hitokoto_sentence` (
`id` int(11) NOT NULL,
`hitokoto` char(255) NOT NULL,
`type` char(255) NOT NULL,
`from` char(255) NOT NULL,
`from_who` varchar(255) DEFAULT NULL,
`creator` char(255) DEFAULT 'hitokoto',
`creator_uid` int(11) DEFAULT NULL,
`assessor` char(255) DEFAULT NULL,
`owner` char(255) DEFAULT '0',
`created_at` char(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_ticket`
--
CREATE TABLE IF NOT EXISTS `hitokoto_ticket` (
`id` int(10) unsigned NOT NULL,
`uid` int(11) NOT NULL COMMENT '开设ticket用户id',
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '工单状态,1为开启,2为关闭',
`content` text COLLATE utf8_unicode_ci,
`attachment` text COLLATE utf8_unicode_ci,
`open_time` datetime NOT NULL COMMENT '创建ticket时间',
`last_update` datetime NOT NULL COMMENT '最后更新时间',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_ticket_reply`
--
CREATE TABLE IF NOT EXISTS `hitokoto_ticket_reply` (
`id` int(10) unsigned NOT NULL,
`belong_to` int(11) NOT NULL COMMENT '归属ticket的ID',
`uid` int(11) NOT NULL,
`content` text COLLATE utf8_unicode_ci NOT NULL,
`attachment` text COLLATE utf8_unicode_ci,
`reply_time` datetime NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- 表的结构 `hitokoto_users`
--
CREATE TABLE IF NOT EXISTS `hitokoto_users` (
`id` int(10) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`is_admin` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '是否是管理员,1为是0为否',
`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `hitokoto_like`
--
ALTER TABLE `hitokoto_like`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `hitokoto_password_resets`
--
ALTER TABLE `hitokoto_password_resets`
ADD KEY `password_resets_email_index` (`email`),
ADD KEY `password_resets_token_index` (`token`);
--
-- Indexes for table `hitokoto_pending`
--
ALTER TABLE `hitokoto_pending`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `hitokoto_refuse`
--
ALTER TABLE `hitokoto_refuse`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `hitokoto_sentence`
--
ALTER TABLE `hitokoto_sentence`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `hitokoto_ticket`
--
ALTER TABLE `hitokoto_ticket`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `hitokoto_ticket_reply`
--
ALTER TABLE `hitokoto_ticket_reply`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `hitokoto_users`
--
ALTER TABLE `hitokoto_users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `hitokoto_like`
--
ALTER TABLE `hitokoto_like`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `hitokoto_pending`
--
ALTER TABLE `hitokoto_pending`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `hitokoto_refuse`
--
ALTER TABLE `hitokoto_refuse`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `hitokoto_sentence`
--
ALTER TABLE `hitokoto_sentence`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `hitokoto_ticket`
--
ALTER TABLE `hitokoto_ticket`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `hitokoto_ticket_reply`
--
ALTER TABLE `hitokoto_ticket_reply`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `hitokoto_users`
--
ALTER TABLE `hitokoto_users`
MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;