forked from sorice/scwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscwt.sql
441 lines (363 loc) · 18.5 KB
/
scwt.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
-- phpMyAdmin SQL Dump
-- version 4.2.12deb2+deb8u2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 05, 2017 at 12:54 PM
-- Server version: 5.5.54-0+deb8u1
-- PHP Version: 5.6.29-0+deb8u1
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 utf8 */;
--
-- Database: `scwt`
--
-- --------------------------------------------------------
--
-- Table structure for table `accommodation`
--
CREATE TABLE IF NOT EXISTS `accommodation` (
`id` int(11) NOT NULL,
`cover_image` text COLLATE latin1_spanish_ci NOT NULL,
`name` varchar(60) COLLATE latin1_spanish_ci NOT NULL,
`english_name` varchar(60) COLLATE latin1_spanish_ci NOT NULL,
`price` varchar(60) COLLATE latin1_spanish_ci NOT NULL,
`description` text COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `accommodation`
--
INSERT INTO `accommodation` (`id`, `cover_image`, `name`, `english_name`, `price`, `description`) VALUES
(1, 'assets/imgs/accommodations/rincon_del_cielo.png', 'Rincón del Cielo', 'Sky Nook', '$20 to $50 CUC', ' Less than one block to the central park of Santa Clara "Rincón del Cielo" is a comfortable "hostal" (lodging house). With a beautiful view of the old city, and "Luis Estevez" street, one of the most popular walks. Surrounded by banks, restaurants and just 15m to the Boulevard.'),
(2, 'assets/imgs/accommodations/colibri_azul.png', 'Colibrí Azul', 'Blue Humming-Bird', '$25 to $35', ' Near to the central park of Santa Clara "Colibrí Azul" is a magic "hostal" (lodging house). Made in a colonial house has marvelous room and interior yard. You can interact with family food business and the Labiofam pharmacy.'),
(3, 'assets/imgs/accommodations/ochun_yemaya_hostal.png', 'Ochún - Yemayá', 'No Translation - folkloric name', '$35 to $45', 'Located in the city of Trinidad this is a very traditional place. Include bar and restaurant with a bohemian climate.');
-- --------------------------------------------------------
--
-- Table structure for table `admin`
--
CREATE TABLE IF NOT EXISTS `admin` (
`id` int(11) NOT NULL,
`name` varchar(64) COLLATE latin1_spanish_ci NOT NULL,
`username` varchar(64) COLLATE latin1_spanish_ci NOT NULL,
`password` varchar(64) COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci COMMENT='user/pass inicial md5(scwt)';
--
-- Dumping data for table `admin`
--
INSERT INTO `admin` (`id`, `name`, `username`, `password`) VALUES
(1, 'scwt', 'e9f4f62afa36c1453b13b263c210893e', 'e9f4f62afa36c1453b13b263c210893e');
-- --------------------------------------------------------
--
-- Table structure for table `carousel`
--
CREATE TABLE IF NOT EXISTS `carousel` (
`id` int(11) NOT NULL,
`image` text COLLATE latin1_spanish_ci NOT NULL,
`main_text` text COLLATE latin1_spanish_ci NOT NULL,
`secondary_text` text COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `carousel`
--
INSERT INTO `carousel` (`id`, `image`, `main_text`, `secondary_text`) VALUES
(1, 'assets/imgs/carousel/Santa_Clara2a.png', 'Free guiding & help in managing your stay', 'Know the real Cuba by the hand of its protagonists!'),
(2, 'assets/imgs/carousel/Habana2a.png', 'Share with our family', 'Welcome at the airport, feel the Cuban warmness'),
(3, 'assets/imgs/carousel/Trinidad2a.png', 'Twenty hours of cultural exchange', 'Let''s share news about our countries and families!');
-- --------------------------------------------------------
--
-- Table structure for table `contact_us`
--
CREATE TABLE IF NOT EXISTS `contact_us` (
`id` int(11) NOT NULL,
`name` varchar(50) COLLATE latin1_spanish_ci NOT NULL,
`email` varchar(65) COLLATE latin1_spanish_ci NOT NULL,
`comment` longtext COLLATE latin1_spanish_ci NOT NULL,
`verification_code` varchar(32) COLLATE latin1_spanish_ci NOT NULL,
`verified` tinyint(1) NOT NULL DEFAULT '0'
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `contact_us`
--
INSERT INTO `contact_us` (`id`, `name`, `email`, `comment`, `verification_code`, `verified`) VALUES
(1, 'jjj', '[email protected]', 'knn', 'agmD8VIl9CXbU7ecT6AZhijw3QyvRdnK', 0),
(2, 'Abel', '[email protected]', 'Texto de prueba...', 'wtjpW0s8FJoeCgP5GxXQn7au1NcV9zmE', 0);
-- --------------------------------------------------------
--
-- Table structure for table `friends`
--
CREATE TABLE IF NOT EXISTS `friends` (
`id` int(11) NOT NULL,
`image` text COLLATE latin1_spanish_ci NOT NULL,
`opinion` text COLLATE latin1_spanish_ci NOT NULL,
`author` varchar(100) COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `friends`
--
INSERT INTO `friends` (`id`, `image`, `opinion`, `author`) VALUES
(1, 'assets/imgs/friends/swbExZK9.png', 'Thank you very much for everything! For opening the doors of your home, heart and family. Cuba wouldn''t have been the same without you, guys. Thank you for taking care of me and helping me in everything', 'Alessandra Feruglio'),
(2, 'assets/imgs/friends/20160921_Leo.png', 'I felt loved by you, and glad with the city tours. The travel was worth every second. I will return with my girlfriend to wander about the city of Santa Clara.', 'Leonel Salazar'),
(7, 'assets/imgs/friends/U85vpTC0.jpg', 'fff', 'ffff');
-- --------------------------------------------------------
--
-- Table structure for table `static_images`
--
CREATE TABLE IF NOT EXISTS `static_images` (
`id` int(11) NOT NULL,
`overview_img_welcome` text COLLATE latin1_spanish_ci NOT NULL,
`overview_img_transport` text COLLATE latin1_spanish_ci NOT NULL,
`overview_img_accommodation` text COLLATE latin1_spanish_ci NOT NULL,
`overview_img_tours` text COLLATE latin1_spanish_ci NOT NULL,
`contact_img_yanet` text COLLATE latin1_spanish_ci NOT NULL,
`contact_img_abel` text COLLATE latin1_spanish_ci NOT NULL,
`contact_img_jane` text COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `static_images`
--
INSERT INTO `static_images` (`id`, `overview_img_welcome`, `overview_img_transport`, `overview_img_accommodation`, `overview_img_tours`, `contact_img_yanet`, `contact_img_abel`, `contact_img_jane`) VALUES
(1, 'assets/imgs/overview/u9JfjFg5.png', 'assets/imgs/overview/pJR7Lfb3.png', 'assets/imgs/overview/accommodation3a.png', 'assets/imgs/overview/tours2a.png', 'assets/imgs/contact/yanet2a.png', 'assets/imgs/contact/abel2a.png', 'assets/imgs/contact/0sUhdzOb.png');
-- --------------------------------------------------------
--
-- Table structure for table `static_text`
--
CREATE TABLE IF NOT EXISTS `static_text` (
`id` int(11) NOT NULL,
`overview` text COLLATE latin1_spanish_ci NOT NULL,
`overview_welcome` text COLLATE latin1_spanish_ci NOT NULL,
`overview_transport` text COLLATE latin1_spanish_ci NOT NULL,
`overview_accommodation` text COLLATE latin1_spanish_ci NOT NULL,
`overview_tours` text COLLATE latin1_spanish_ci NOT NULL,
`stories` text COLLATE latin1_spanish_ci NOT NULL,
`friends` text COLLATE latin1_spanish_ci NOT NULL,
`address` text COLLATE latin1_spanish_ci NOT NULL,
`phone` varchar(20) COLLATE latin1_spanish_ci NOT NULL,
`email` varchar(60) COLLATE latin1_spanish_ci NOT NULL,
`contact_info_yanet` text COLLATE latin1_spanish_ci NOT NULL,
`contact_info_abel` text COLLATE latin1_spanish_ci NOT NULL,
`contact_info_jane` text COLLATE latin1_spanish_ci NOT NULL,
`transport` text COLLATE latin1_spanish_ci NOT NULL,
`accommodation` text COLLATE latin1_spanish_ci NOT NULL,
`tours` text COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `static_text`
--
INSERT INTO `static_text` (`id`, `overview`, `overview_welcome`, `overview_transport`, `overview_accommodation`, `overview_tours`, `stories`, `friends`, `address`, `phone`, `email`, `contact_info_yanet`, `contact_info_abel`, `contact_info_jane`, `transport`, `accommodation`, `tours`) VALUES
(1, 'This website is a family site for international cultural exchange. Our experience with friends and clients helped us figure out the needs of Cuba''s visitors. So our main goal is to help foreign friends who come to Cuba with basic and important things like lodging, transport, language barriers, free tours by means of this website about the real Cuba from our point of view.', 'We welcome you at the airport. Quick exchange on how to have a happy stay in Cuba.', 'How to go from airport to "casa particular" in the city? How to go around the city?', 'Where to stay? A small hotel in the heart of the Cuban family!', 'Discover the real Cuba. Walk with us through our reality!', 'Never miss a story, live them with us.', 'Our friends are important to us and we listen to them always.', 'Calle B #13, e/ Maleza y 7ma, <p>Santa Clara, Villa Clara, Cuba. CP 85300.</p>', '+5353981601', '[email protected]', 'English, French and Italian professional interpreter. Digital journal translator and today tour guide at Cayo Santa María Tourist Resort in Villa Clara.', 'Python scientist, college professor for 12 years, now dedicated to Python technologies for language processing.', 'Yanet and Abel''s daughter! 6 years old, she likes to play for hours. Drawing skills for communication. Loves making new friends like us. We are encouraging her to learn English.', 'All you need to know about the kind of transport you can use during your trip.', 'Know and select the "Casa Particular" of your interest. Just very Cuban friendly "hostals" (lodging house) are listed. All checked!', 'Walk with us across the cities and its singularities.');
-- --------------------------------------------------------
--
-- Table structure for table `stories`
--
CREATE TABLE IF NOT EXISTS `stories` (
`id` int(11) NOT NULL,
`title` varchar(100) COLLATE latin1_spanish_ci NOT NULL,
`summary` varchar(600) COLLATE latin1_spanish_ci NOT NULL,
`cover_image` text COLLATE latin1_spanish_ci NOT NULL,
`external_link` varchar(250) COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `stories`
--
INSERT INTO `stories` (`id`, `title`, `summary`, `cover_image`, `external_link`) VALUES
(1, 'Ireland knock, knock', 'I was heading home from the school where I was teaching at the time when I saw him. He was on a corner and seemed indecisive so I dared to ask: "Hi, are you looking for something?". Sean O''Halloran, from Ireland, looked definitely relieved of having finally found someone who spoke his language. "Yes, I''m looking for a casa particular where I could stay the night". So I took him to one and he asked me later if I was free the next day and if I could show him some interesting places in Santa Clara. He gave us this wonderful idea of creating the website.', 'assets/imgs/stories/Py5fMQjZ.png', 'http://localhost/scwt/index.php/admin/edit/s/1'),
(2, 'Sharing with West Canada', 'Leo and Margaret are two of our first Canadian friends. They come from Vancouver. Nice, humble, and talkative like us. Their last visit had been 10 years ago. We met them while selling souvenirs in a craft market in Cayo Santa Maria. Now old and intrigued they ask a lot about the new Cuban reality. We share a lot, and today we are still communicating. They want to come back in the near future.', 'assets/imgs/stories/y2Bs7JeE.png', 'http://localhost/scwt/index.php/admin/edit/s/2'),
(3, 'Italy, surprise!', 'Alessa came to Cuba after 3 months in Brazil. Her family had come here with the idea of seeing "the last of Cuba"; but new Cuba-US relations have changed nothing! Then we taught how her to travel across Cuba with very few resources. She returned with a big picture of our reality and good wishes. After exchanging experiences from her journey here and her vision about everything, we learned many things about our own country.', 'assets/imgs/stories/QJ5WM1Nv.png', 'http://localhost/scwt/index.php/admin/edit/s/2');
-- --------------------------------------------------------
--
-- Table structure for table `stories_gallery`
--
CREATE TABLE IF NOT EXISTS `stories_gallery` (
`id` int(11) NOT NULL,
`id_story` int(11) NOT NULL,
`thumbnail` text COLLATE latin1_spanish_ci NOT NULL,
`image` text COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
-- --------------------------------------------------------
--
-- Table structure for table `tours`
--
CREATE TABLE IF NOT EXISTS `tours` (
`id` int(11) NOT NULL,
`weight` int(11) NOT NULL DEFAULT '1',
`cover_image` text COLLATE latin1_spanish_ci NOT NULL,
`name` varchar(50) COLLATE latin1_spanish_ci NOT NULL,
`description` text COLLATE latin1_spanish_ci NOT NULL,
`brochure` text COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `tours`
--
INSERT INTO `tours` (`id`, `weight`, `cover_image`, `name`, `description`, `brochure`) VALUES
(1, 0, 'assets/imgs/tours/IMG_6679.JPG', 'Welcome Day', 'When you arrive to a new country you need someone of your trust with knowledge of the place. We wait for you at the Santa Clara airport. After a little meeting of presentation we share with you all the global details of our city. After that we will show you the transportations, and finally accompany you to the "casa particular".', 'assets/pdfs/Tour_01_Reception.pdf');
-- --------------------------------------------------------
--
-- Table structure for table `transport`
--
CREATE TABLE IF NOT EXISTS `transport` (
`id` int(11) NOT NULL,
`cover_image` text COLLATE latin1_spanish_ci NOT NULL,
`name` varchar(50) COLLATE latin1_spanish_ci NOT NULL,
`description` text COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Dumping data for table `transport`
--
INSERT INTO `transport` (`id`, `cover_image`, `name`, `description`) VALUES
(1, 'assets/imgs/transports/bicitaxi1.png', 'Bicitaxi', 'Bicycle Taxi. Is an adapted bicycle for short travels inside the city. Their maximum capacity are two persons. Fresh air, a good view of the road are their best qualities.'),
(2, 'assets/imgs/transports/almendron1.png', 'Almendrón ("carro americano")', 'Also known as "Máquina" (machine), this cars are original pieces of the fifths. You can pick this kind of cars with air-conditioner, music, and other features. Specials for 50km travels.');
-- --------------------------------------------------------
--
-- Table structure for table `transport_gallery`
--
CREATE TABLE IF NOT EXISTS `transport_gallery` (
`id` int(11) NOT NULL,
`id_transport` int(11) NOT NULL,
`thumbnail` text COLLATE latin1_spanish_ci NOT NULL,
`image` text COLLATE latin1_spanish_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_spanish_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `accommodation`
--
ALTER TABLE `accommodation`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `admin`
--
ALTER TABLE `admin`
ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `username` (`username`);
--
-- Indexes for table `carousel`
--
ALTER TABLE `carousel`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `contact_us`
--
ALTER TABLE `contact_us`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `friends`
--
ALTER TABLE `friends`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `static_images`
--
ALTER TABLE `static_images`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `static_text`
--
ALTER TABLE `static_text`
ADD UNIQUE KEY `id` (`id`);
--
-- Indexes for table `stories`
--
ALTER TABLE `stories`
ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `title` (`title`);
--
-- Indexes for table `stories_gallery`
--
ALTER TABLE `stories_gallery`
ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `id_story` (`id_story`);
--
-- Indexes for table `tours`
--
ALTER TABLE `tours`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `transport`
--
ALTER TABLE `transport`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `transport_gallery`
--
ALTER TABLE `transport_gallery`
ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `id_transport` (`id_transport`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `accommodation`
--
ALTER TABLE `accommodation`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `admin`
--
ALTER TABLE `admin`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `carousel`
--
ALTER TABLE `carousel`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `contact_us`
--
ALTER TABLE `contact_us`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `friends`
--
ALTER TABLE `friends`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `static_images`
--
ALTER TABLE `static_images`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `static_text`
--
ALTER TABLE `static_text`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `stories`
--
ALTER TABLE `stories`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `stories_gallery`
--
ALTER TABLE `stories_gallery`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `tours`
--
ALTER TABLE `tours`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `transport`
--
ALTER TABLE `transport`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `transport_gallery`
--
ALTER TABLE `transport_gallery`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `stories_gallery`
--
ALTER TABLE `stories_gallery`
ADD CONSTRAINT `stories_gallery_ibfk_1` FOREIGN KEY (`id_story`) REFERENCES `stories` (`id`);
--
-- Constraints for table `transport_gallery`
--
ALTER TABLE `transport_gallery`
ADD CONSTRAINT `transport_gallery_ibfk_1` FOREIGN KEY (`id_transport`) REFERENCES `transport` (`id`);
/*!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 */;