-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteamup.sql
More file actions
669 lines (586 loc) · 55.8 KB
/
teamup.sql
File metadata and controls
669 lines (586 loc) · 55.8 KB
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
-- MySQL dump 10.13 Distrib 8.0.29, for Linux (x86_64)
--
-- Host: localhost Database: teamup
-- ------------------------------------------------------
-- Server version 8.0.29-0ubuntu0.20.04.3
/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `ch_favorites`
--
DROP TABLE IF EXISTS `ch_favorites`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ch_favorites` (
`id` bigint NOT NULL,
`user_id` bigint NOT NULL,
`favorite_id` bigint NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ch_favorites`
--
LOCK TABLES `ch_favorites` WRITE;
/*!40000 ALTER TABLE `ch_favorites` DISABLE KEYS */;
/*!40000 ALTER TABLE `ch_favorites` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ch_messages`
--
DROP TABLE IF EXISTS `ch_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ch_messages` (
`id` bigint NOT NULL,
`type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`from_id` bigint NOT NULL,
`to_id` bigint NOT NULL,
`body` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`attachment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`seen` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ch_messages`
--
LOCK TABLES `ch_messages` WRITE;
/*!40000 ALTER TABLE `ch_messages` DISABLE KEYS */;
INSERT INTO `ch_messages` VALUES (2100689118,'user',24,1,'Helllo',NULL,0,'2022-07-22 08:55:01','2022-07-22 08:55:01'),(2137046511,'user',3,2,'how are you',NULL,0,'2022-07-21 00:42:02','2022-07-21 00:42:02'),(2209492455,'user',1,3,'hello',NULL,1,'2022-07-22 08:21:30','2022-07-22 08:21:48'),(2547015930,'user',3,1,'hello',NULL,1,'2022-07-21 00:41:41','2022-07-22 08:21:25');
/*!40000 ALTER TABLE `ch_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `club_categories`
--
DROP TABLE IF EXISTS `club_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `club_categories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`admin_id` bigint unsigned NOT NULL,
`category_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `club_categories_admin_id_foreign` (`admin_id`),
CONSTRAINT `club_categories_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `club_categories`
--
LOCK TABLES `club_categories` WRITE;
/*!40000 ALTER TABLE `club_categories` DISABLE KEYS */;
INSERT INTO `club_categories` VALUES (2,1,'Cultural','2022-07-21 00:13:16','2022-07-21 00:13:16'),(3,1,'Honors','2022-07-21 00:13:16','2022-07-21 00:13:16'),(4,1,'Music/Performing Arts','2022-07-21 00:13:16','2022-07-21 00:13:16'),(5,1,'Service/Social Justice','2022-07-21 00:13:16','2022-07-21 00:13:16'),(6,1,'General Interest and Spiritual','2022-07-21 00:13:16','2022-07-21 00:13:16'),(7,1,'Arts & Culture','2022-07-21 00:13:16','2022-07-21 00:13:16'),(8,1,'Sports','2022-07-21 02:10:07','2022-07-21 02:10:07'),(9,1,'Academic','2022-07-22 08:20:19','2022-07-22 08:20:19');
/*!40000 ALTER TABLE `club_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `club_slider_images`
--
DROP TABLE IF EXISTS `club_slider_images`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `club_slider_images` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`president_id` bigint unsigned NOT NULL,
`club_id` bigint unsigned NOT NULL,
`slider_no` int NOT NULL,
`slider_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `club_slider_images_president_id_foreign` (`president_id`),
KEY `club_slider_images_club_id_foreign` (`club_id`),
CONSTRAINT `club_slider_images_club_id_foreign` FOREIGN KEY (`club_id`) REFERENCES `clubs` (`id`) ON DELETE CASCADE,
CONSTRAINT `club_slider_images_president_id_foreign` FOREIGN KEY (`president_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `club_slider_images`
--
LOCK TABLES `club_slider_images` WRITE;
/*!40000 ALTER TABLE `club_slider_images` DISABLE KEYS */;
INSERT INTO `club_slider_images` VALUES (1,23,2,1,'image/club_slider_image/1738979409121122.jpeg','2022-07-21 02:24:32','2022-07-21 10:43:19'),(2,23,2,2,'image/club_slider_image/1738979423161676.jpeg','2022-07-21 02:29:40','2022-07-21 10:43:32'),(3,23,2,3,'image/club_slider_image/1738979435365372.jpeg','2022-07-21 02:37:16','2022-07-21 10:43:44'),(4,24,3,1,'image/club_slider_image/1738989026129904.jpg','2022-07-21 13:16:10','2022-07-21 13:16:10'),(5,24,3,2,'image/club_slider_image/1738989039760001.jpg','2022-07-21 13:16:24','2022-07-21 13:16:24'),(6,24,3,3,'image/club_slider_image/1738989050229764.jpg','2022-07-21 13:16:34','2022-07-21 13:16:34');
/*!40000 ALTER TABLE `club_slider_images` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `clubs`
--
DROP TABLE IF EXISTS `clubs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `clubs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`president_id` bigint unsigned NOT NULL,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`category_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`vision` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`mission` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`approval` tinyint(1) DEFAULT NULL,
`home_slider_approval` tinyint(1) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `clubs_president_id_foreign` (`president_id`),
CONSTRAINT `clubs_president_id_foreign` FOREIGN KEY (`president_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `clubs`
--
LOCK TABLES `clubs` WRITE;
/*!40000 ALTER TABLE `clubs` DISABLE KEYS */;
INSERT INTO `clubs` VALUES (1,2,'Art Club','The Art Club is a place for practicing artists to hone in on their skills, develop their techniques and portfolios, collaborate with other artists like themselves, create bonds with the community through the arts, and learn how to work together through group projects that will beautify the school and community.','Arts & Culture','Our vision is for the Vero Beach Art Club to be the voice and the representative of the visual arts and artists of our community, and to be a beacon of Artistic endeavor for the Treasure Coast. We will strive to do this by both continuing our existing programs and by strengthening our ties to our growing artistic community. We will continue our established programs as we seek to expand on them.','Purpose of the Club: Art Club gives students the opportunity to meet monthly in a more relaxed and informal setting to discuss and work on art. Students may work on projects of their own interest or may use the time as an extension of an enrolled art class.','image/club/art_club.jpg',1,0,'2022-07-21 00:13:16','2022-07-22 08:22:46'),(2,23,'UWU Cricket Club','NSBM Cricket club is one of the most tradition of nurturing talented and aspiring young cricketers to be the best that they can be.\r\n\r\nNSBM Cricket Club successful players in the NSBM Green University Town. We are an inclusive and nurturing club where new players and supporters are always warmly welcomed','Sports','To provide a safe and friendly environment for cricketers, support staff, family, and friends. To play within the true spirit of the game. To provide all aspiring cricketers the chance to develop and improve their cricket. To promote the development of junior players to senior cricketers.','The Goodwood Cricket Club aims to provide a positive and enjoyable cricket experience for people of all ages and abilities in a fully structured, organised and resourced club environment, while developing players, people and partnerships in the community.','image/club/1739059245278438.jpg',1,1,'2022-07-22 07:52:45','2022-07-22 07:52:45'),(3,24,'Buddhist Society','Buddhist society of TeamUp is the only association that represents all Buddhist students of the university and conducts all Buddhist events under the guidance of Senior Lecturer,Former Brigadier Sanath Wickrmamsingha and Lecturer Ms.Sulari Fernando.','Cultural','This Buddhist vision for society evolved as the religion expanded; it was not part of the Buddha\'s original vision under the Bodhi tree. The Buddha had been seeking a path to enlightenment and escape from samsara, and his focus was on sharing his insights with the renunciants who followed him','The ultimate objective of all the activities by NSBM Buddhist Society is to witness religious citizens with a better motherland.','image/club/1739062767939765.jpg',1,1,'2022-07-22 08:48:16','2022-07-22 08:48:16');
/*!40000 ALTER TABLE `clubs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contacts`
--
DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contacts` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`subject` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contacts`
--
LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
INSERT INTO `contacts` VALUES (1,'dfffddf','dsdsa@gmail.com','dsa','saddsd','2022-07-22 08:12:39','2022-07-22 08:12:39'),(2,'Lashen','member@demo.com','Hello','HEllo','2022-07-22 08:15:20','2022-07-22 08:15:20');
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `events`
--
DROP TABLE IF EXISTS `events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `events` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`president_id` bigint unsigned NOT NULL,
`club_id` bigint unsigned NOT NULL,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`date` date DEFAULT NULL,
`time` time DEFAULT NULL,
`venue` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `events_president_id_foreign` (`president_id`),
KEY `events_club_id_foreign` (`club_id`),
CONSTRAINT `events_club_id_foreign` FOREIGN KEY (`club_id`) REFERENCES `clubs` (`id`) ON DELETE CASCADE,
CONSTRAINT `events_president_id_foreign` FOREIGN KEY (`president_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `events`
--
LOCK TABLES `events` WRITE;
/*!40000 ALTER TABLE `events` DISABLE KEYS */;
INSERT INTO `events` VALUES (1,23,2,'Inter University Cricket Tourament - 2022','<p><strong>Inter University Cricket Tourament - 2022 </strong></p><p> </p><p><strong>Organized by: </strong>Sociological society of Uva Wellassa University of Sri Lanka</p><p>The tournament is to be held for both male and female undergraduates on 25 th of August 2022.</p><p> </p><p><i><strong>Instructions for the participants</strong></i></p><p> </p><p>1. This premier league has 4 overs.</p><p>2. Every team must have 7 players.</p><p>3. A player cannot participate in two teams.</p><p>4. A player can throw only one over</p><p>5. Players must bring their university identity cards.</p><p>6. It will be a knock out match and the umpire\'s decision would be considered final.</p><p>7 .The tournament will be held according to international rules and regulations, the teams which violate the rules and regulations will be eliminated from the tournament.</p>','image/events/1738979521170764.jpeg','2022-08-25','08:00:00','Playground, Uva Wellassa University of Sri Lanka',1,'2022-07-21 10:45:06','2022-07-21 10:45:06'),(2,24,3,'Pirith ceremonies','<p>Throughout history, man has set apart space for the sacred-be it a shrine, a temple, or a particular spot on earth where he or she can disconnect with the mundane and unite with spirit. In Sri Lanka, the pirith mandapaya is one such space- a consecrated spot where the words of the Buddha are chanted.</p><p><br>Pirith (paritta in Pali) means ‘protection\', usually ‘protection from all directions.\' It is a space for chanting the suttas (discourses) of Gautama the Buddha and his disciples such as Arahat Ananda, to ward off the various forms of danger, including disease, malevolent planetary influences, interference by spirits, and invocation for worldly fortune and success. Importantly, it also aims to elevate consciousness, clearing delusory states of mind and refining the consciousness of the recipient. </p><p><br>Pirith chanting is an ancient practice. The historical chronicle, the Mahavamsa, records a pirith ceremony conducted by King Upatissa (4th Century) when the country faced severe drought, famine and disease. There are also references to pirith ceremonies during the reign of Aggabodhi IV (658-674 AD) and Kassapa V (913-923 AD). At the heart of the ceremony is the power of the purity of the Buddha\'s teachings, imparted with the singular intent to free sentient beings from the intrinsic suffering of samsara. The sincere recital of the suttas as statements of unshakeable purity (sccakiriya) is believed to have the power to alleviate suffering.</p>','image/events/1739038685320676.jpg','2022-07-15','21:25:00','University Main Hall',1,'2022-07-22 02:25:30','2022-07-22 08:52:49');
/*!40000 ALTER TABLE `events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `failed_jobs`
--
DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `failed_jobs`
--
LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `history_logs`
--
DROP TABLE IF EXISTS `history_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `history_logs` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `history_logs_user_id_foreign` (`user_id`),
CONSTRAINT `history_logs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `history_logs`
--
LOCK TABLES `history_logs` WRITE;
/*!40000 ALTER TABLE `history_logs` DISABLE KEYS */;
INSERT INTO `history_logs` VALUES (1,3,'Registered to the Art Club Annual Fee.','2022-07-21 00:57:54','2022-07-21 00:57:54'),(2,3,'Registered to the Art Club.','2022-07-21 00:57:59','2022-07-21 00:57:59'),(3,5,'Registered to the Art Club Annual Fee.','2022-07-21 01:24:00','2022-07-21 01:24:00'),(4,23,'Created the UWU Cricket Club.','2022-07-21 02:20:17','2022-07-21 02:20:17'),(5,23,'Added a club slider.','2022-07-21 02:24:32','2022-07-21 02:24:32'),(6,23,'Added a club slider.','2022-07-21 02:29:40','2022-07-21 02:29:40'),(7,23,'Added a club slider.','2022-07-21 02:37:16','2022-07-21 02:37:16'),(8,23,'Created an event as Inter University Cricket Tourament - 2022.','2022-07-21 02:50:49','2022-07-21 02:50:49'),(9,23,'Updated the Inter University Cricket Tourament - 2022 event','2022-07-21 02:51:13','2022-07-21 02:51:13'),(10,23,'Updated the Inter University Cricket Tourament - 2022 event','2022-07-21 02:53:16','2022-07-21 02:53:16'),(11,23,'Created a notice.','2022-07-21 02:54:15','2022-07-21 02:54:15'),(12,23,'Published a notice.','2022-07-21 02:54:26','2022-07-21 02:54:26'),(13,23,'Published the event.','2022-07-21 10:14:24','2022-07-21 10:14:24'),(14,23,'Updated a club slider.','2022-07-21 10:35:10','2022-07-21 10:35:10'),(15,23,'Updated a club slider.','2022-07-21 10:43:19','2022-07-21 10:43:19'),(16,23,'Updated a club slider.','2022-07-21 10:43:32','2022-07-21 10:43:32'),(17,23,'Updated a club slider.','2022-07-21 10:43:44','2022-07-21 10:43:44'),(18,23,'Updated the Inter University Cricket Tourament - 2022 event','2022-07-21 10:45:06','2022-07-21 10:45:06'),(19,24,'Created the Buddhist Society.','2022-07-21 13:14:04','2022-07-21 13:14:04'),(20,24,'Added a club slider.','2022-07-21 13:16:10','2022-07-21 13:16:10'),(21,24,'Added a club slider.','2022-07-21 13:16:24','2022-07-21 13:16:24'),(22,24,'Added a club slider.','2022-07-21 13:16:34','2022-07-21 13:16:34'),(23,24,'Updated the Buddhist Society.','2022-07-21 13:17:54','2022-07-21 13:17:54'),(24,24,'Created a notice.','2022-07-21 13:21:43','2022-07-21 13:21:43'),(25,24,'Published a notice.','2022-07-21 13:21:47','2022-07-21 13:21:47'),(26,24,'Created Pirith Chanting Ceremony meeting.','2022-07-21 13:24:36','2022-07-21 13:24:36'),(27,24,'Published the Pirith Chanting Ceremony meeting.','2022-07-21 13:24:41','2022-07-21 13:24:41'),(28,24,'Updated a notice.','2022-07-21 13:52:25','2022-07-21 13:52:25'),(29,24,'Updated your profile information.','2022-07-21 19:10:55','2022-07-21 19:10:55'),(30,24,'Created an event as Pirith ceremonies.','2022-07-22 02:25:30','2022-07-22 02:25:30'),(31,1,'Approved the UWU Cricket Club','2022-07-22 07:39:41','2022-07-22 07:39:41'),(32,1,'Approved the Buddhist Society','2022-07-22 07:39:42','2022-07-22 07:39:42'),(33,23,'Updated the UWU Cricket Club.','2022-07-22 07:40:29','2022-07-22 07:40:29'),(34,23,'Updated the UWU Cricket Club.','2022-07-22 07:41:13','2022-07-22 07:41:13'),(35,1,'Added a home slider','2022-07-22 07:45:27','2022-07-22 07:45:27'),(36,1,'Added a home slider','2022-07-22 07:45:51','2022-07-22 07:45:51'),(37,23,'Updated the UWU Cricket Club.','2022-07-22 07:52:17','2022-07-22 07:52:17'),(38,23,'Updated the UWU Cricket Club.','2022-07-22 07:52:24','2022-07-22 07:52:24'),(39,23,'Updated the UWU Cricket Club.','2022-07-22 07:52:45','2022-07-22 07:52:45'),(40,1,'Removed a home slider','2022-07-22 08:17:26','2022-07-22 08:17:26'),(41,1,'Rejected the Art Club','2022-07-22 08:18:41','2022-07-22 08:18:41'),(42,1,'Rejected the Art Club','2022-07-22 08:22:44','2022-07-22 08:22:44'),(43,1,'Approved the Art Club','2022-07-22 08:22:46','2022-07-22 08:22:46'),(44,25,'Updated your profile information.','2022-07-22 08:41:04','2022-07-22 08:41:04'),(45,25,'Created the Chase Kramer.','2022-07-22 08:43:29','2022-07-22 08:43:29'),(46,25,'Added a club slider.','2022-07-22 08:44:11','2022-07-22 08:44:11'),(47,25,'Added a club slider.','2022-07-22 08:44:15','2022-07-22 08:44:15'),(48,25,'Added a club slider.','2022-07-22 08:44:23','2022-07-22 08:44:23'),(49,24,'Updated your profile information.','2022-07-22 08:47:25','2022-07-22 08:47:25'),(50,24,'Updated the Buddhist Society.','2022-07-22 08:48:16','2022-07-22 08:48:16'),(51,24,'Published the event.','2022-07-22 08:52:49','2022-07-22 08:52:49'),(52,24,'Published a notice.','2022-07-22 08:53:13','2022-07-22 08:53:13'),(53,24,'Drafted the Pirith Chanting Ceremony meeting.','2022-07-22 08:53:31','2022-07-22 08:53:31'),(54,3,'Updated your profile information.','2022-07-22 08:59:00','2022-07-22 08:59:00'),(55,3,'Registered to the Art Club Annual Fee.','2022-07-22 09:08:13','2022-07-22 09:08:13'),(56,3,'Registered to the Art Club Annual Fee.','2022-07-22 09:17:57','2022-07-22 09:17:57'),(57,3,'Registered to the UWU Cricket Club Annual Fee.','2022-07-22 09:21:22','2022-07-22 09:21:22'),(58,3,'Registered to the UWU Cricket Club.','2022-07-22 09:21:33','2022-07-22 09:21:33'),(59,2,'Created Meeting 1 meeting.','2022-07-22 09:23:25','2022-07-22 09:23:25'),(60,23,'Published a notice.','2022-07-22 10:34:20','2022-07-22 10:34:20'),(61,2,'Published a notice.','2022-07-22 12:07:03','2022-07-22 12:07:03');
/*!40000 ALTER TABLE `history_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `meetings`
--
DROP TABLE IF EXISTS `meetings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `meetings` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`president_id` bigint unsigned NOT NULL,
`club_id` bigint unsigned NOT NULL,
`title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`meeting_link` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`meeting_id` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`meeting_password` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`date` date NOT NULL,
`time` time NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `meetings_president_id_foreign` (`president_id`),
KEY `meetings_club_id_foreign` (`club_id`),
CONSTRAINT `meetings_club_id_foreign` FOREIGN KEY (`club_id`) REFERENCES `clubs` (`id`) ON DELETE CASCADE,
CONSTRAINT `meetings_president_id_foreign` FOREIGN KEY (`president_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `meetings`
--
LOCK TABLES `meetings` WRITE;
/*!40000 ALTER TABLE `meetings` DISABLE KEYS */;
INSERT INTO `meetings` VALUES (1,24,3,'Pirith Chanting Ceremony','https://zoom.us/j/5551112222','1234v','qade2345tgy','2022-07-23','00:23:00',0,'2022-07-21 13:24:36','2022-07-22 08:53:31'),(2,2,1,'Meeting 1','Voluptates quas aliq','Minim laboriosam qu','Commodo cum aut dese','2022-07-28','13:23:00',1,'2022-07-22 09:23:25','2022-07-22 09:23:25'),(3,2,1,'Meeting 1','Voluptates quas aliq','Minim laboriosam qu','Commodo cum aut dese','2022-07-24','13:23:00',1,'2022-07-22 09:23:25','2022-07-22 09:23:25'),(4,2,1,'Meeting 1','Voluptates quas aliq','Minim laboriosam qu','Commodo cum aut dese','2022-07-23','13:23:00',1,'2022-07-22 09:23:25','2022-07-22 09:23:25'),(5,2,1,'Meeting 1','Voluptates quas aliq','Minim laboriosam qu','Commodo cum aut dese','2022-07-24','13:23:00',1,'2022-07-22 09:23:25','2022-07-22 09:23:25'),(6,2,1,'Meeting 1','Voluptates quas aliq','Minim laboriosam qu','Commodo cum aut dese','2022-07-26','13:23:00',1,'2022-07-22 09:23:25','2022-07-22 09:23:25'),(7,2,1,'Meeting 1','Voluptates quas aliq','Minim laboriosam qu','Commodo cum aut dese','2022-07-28','13:23:00',1,'2022-07-22 09:23:25','2022-07-22 09:23:25');
/*!40000 ALTER TABLE `meetings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (47,'2014_10_12_000000_create_users_table',1),(48,'2014_10_12_100000_create_password_resets_table',1),(49,'2019_08_19_000000_create_failed_jobs_table',1),(50,'2019_12_14_000001_create_personal_access_tokens_table',1),(51,'2022_04_17_135413_create_sliders_table',1),(52,'2022_04_19_113436_create_clubs_table',1),(53,'2022_05_11_125752_create_events_table',1),(54,'2022_05_22_062106_create_meetings_table',1),(55,'2022_05_24_053450_create_notices_table',1),(56,'2022_06_08_151108_create_registered_users_table',1),(57,'2022_06_12_065654_create_statements_table',1),(58,'2022_06_13_999999_add_active_status_to_users',1),(59,'2022_06_13_999999_add_avatar_to_users',1),(60,'2022_06_13_999999_add_dark_mode_to_users',1),(61,'2022_06_13_999999_add_messenger_color_to_users',1),(62,'2022_06_13_999999_create_favorites_table',1),(63,'2022_06_13_999999_create_messages_table',1),(64,'2022_06_14_085458_create_club_categories_table',1),(65,'2022_06_17_141249_create_club_slider_images_table',1),(66,'2022_06_18_031211_create_payments_table',1),(67,'2022_07_04_165439_create_history_logs_table',1),(68,'2022_07_05_122643_create_notifications_table',1),(69,'2022_07_20_171604_create_contacts_table',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `notices`
--
DROP TABLE IF EXISTS `notices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `notices` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`president_id` bigint unsigned NOT NULL,
`club_id` bigint unsigned NOT NULL,
`notice` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `notices_president_id_foreign` (`president_id`),
KEY `notices_club_id_foreign` (`club_id`),
CONSTRAINT `notices_club_id_foreign` FOREIGN KEY (`club_id`) REFERENCES `clubs` (`id`) ON DELETE CASCADE,
CONSTRAINT `notices_president_id_foreign` FOREIGN KEY (`president_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `notices`
--
LOCK TABLES `notices` WRITE;
/*!40000 ALTER TABLE `notices` DISABLE KEYS */;
INSERT INTO `notices` VALUES (1,2,1,'Drawing and Painting Competition\n Arts Club of our university is going to organise a drawing and painting competition, to be held on Saturday, 9th March, 2022, 10:00 A.M. onwards in the university playground. The competition is open to students of all faculties. Students are requested to bring their own paints and colours, sheets will be provided on the spot. For more information, contact the undersigned.\n Rohan\n (Secretary, Arts Club)',1,'2022-07-21 00:13:16','2022-07-21 00:13:16'),(2,2,1,'Inter-House Drama Competition 2022:\n The Inter-House Drama Competition was held at the university auditorium on 18th February 2022. Performances were produced and directed by students of every faculty. Yellow House emerged champions performing the comedy ‘The Actor’s Nightmare’ and the ICT degree program followed as the Runner Up House. The Best Director Award was shared by Kehara Edirisinghe and Haresh Wedanayake of the BBST degree program. The Best Actor award was also bagged by Haresh Wedanayake of ICT. Ayesha Ariff and Suha Farouk (CST Degree) shared the award for Best Actress while Atara Isaac of ICT Degree won the award for Best Supporting Actor. Raid Rizan of BET degree won the award for Best Stage Manager.\n Congratulations to all the participants both on stage and behind the curtains for presenting such a wonderful evening of drama. The link below can be used to view the performance.',1,'2022-07-21 00:13:16','2022-07-21 00:13:16'),(3,2,1,'Ramazan and Wesak Assemblies:\n This term we have held two beautiful assemblies in the Auditorium to mark important religious events, Ramazan and Wesak. These included readings, dances and skits, and were a wonderful way for us to come together and share in times of cultural significance.\n Congratulations to all students and staff involved and thank you for creating such lovely events for us to all enjoy!',1,'2022-07-21 00:13:16','2022-07-21 00:13:16'),(4,23,2,'Cricket Trials For Under-18 School Team\r\n\r\nThe is to inform all our cricket players that selection for the school teams will be made on 29th July, 20xx between 9:00 AM and 2:00 PM in the school playground. Student Cricketers who wish to be in the school team must attend the trials. For any further details, contact the undersigned.\r\n\r\nAnkur\r\nSports Captain',1,'2022-07-21 02:54:15','2022-07-21 02:54:26'),(5,24,3,'Annual Pirith Chanting Ceremony was held on 21st of October 2022, celebrating the 2nd anniversary of NSBM Green University Town. Members of the Buddhist society along with the academic and non-academic staff successfully organized the overnight Pirith chanting and “heel danaya” in next day morning',1,'2022-07-21 13:21:43','2022-07-21 13:21:47');
/*!40000 ALTER TABLE `notices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `notifications`
--
DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `notifications` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`show_to_admin` tinyint(1) NOT NULL DEFAULT '0',
`show_to_president` tinyint(1) NOT NULL DEFAULT '0',
`icon` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`notification` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status_to_admin` tinyint(1) NOT NULL DEFAULT '0',
`status_to_president` tinyint(1) NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `notifications_user_id_foreign` (`user_id`),
CONSTRAINT `notifications_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `notifications`
--
LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
INSERT INTO `notifications` VALUES (1,3,1,1,'<i class=\"fa-duotone fa-right-to-bracket ml-2\"></i>','Registered user Member.',1,0,'2022-07-21 00:20:25','2022-07-22 08:23:17'),(2,3,1,1,'<i class=\"fa-duotone fa-user-plus ml-2\"></i>','Member registered to the Art Club.',1,0,'2022-07-21 00:57:59','2022-07-22 08:23:17'),(3,2,1,0,'<i class=\"fa-duotone fa-user-plus ml-2\"></i>','Registered president President.',1,0,'2022-07-21 01:17:34','2022-07-22 08:23:17'),(4,5,1,1,'<i class=\"fa-duotone fa-right-to-bracket ml-2\"></i>','Registered user Member3.',1,0,'2022-07-21 01:23:20','2022-07-22 08:23:17'),(5,23,1,0,'<i class=\"fa-duotone fa-user-plus ml-2\"></i>','Registered president President2.',1,0,'2022-07-21 02:05:13','2022-07-22 08:23:17'),(6,24,1,0,'<i class=\"fa-duotone fa-user-plus ml-2\"></i>','Registered president President3.',1,0,'2022-07-21 11:09:45','2022-07-22 08:23:17'),(7,25,1,0,'<i class=\"fa-duotone fa-user-plus ml-2\"></i>','Registered president President4.',1,0,'2022-07-21 20:03:19','2022-07-22 08:23:17'),(8,4,1,1,'<i class=\"fa-duotone fa-right-to-bracket ml-2\"></i>','Registered user Member2.',1,0,'2022-07-22 02:43:05','2022-07-22 08:23:17'),(9,3,1,1,'<i class=\"fa-duotone fa-user-plus ml-2\"></i>','Member registered to the UWU Cricket Club.',0,0,'2022-07-22 09:21:33','2022-07-22 09:21:33');
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_resets`
--
DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_resets` (
`email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_resets`
--
LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payments`
--
DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `payments` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`club_id` bigint unsigned NOT NULL,
`description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`payment_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`payer_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`payer_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`amount` double(10,2) NOT NULL,
`currency` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`payment_status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payments`
--
LOCK TABLES `payments` WRITE;
/*!40000 ALTER TABLE `payments` DISABLE KEYS */;
INSERT INTO `payments` VALUES (1,3,1,'Annual Fee','PAYID-MLMPDQA2VB06746CN604252T','E5TJ2Q5SLJ2JJ','sb-vdbmy19355866@business.example.com',20.00,'USD','approved','2022-07-21 00:57:54','2022-07-21 00:57:54'),(5,3,2,'Annual Fee','PAYID-MLNLSYA7RP80145UE355243B','E5TJ2Q5SLJ2JJ','sb-vdbmy19355866@business.example.com',20.00,'USD','approved','2022-07-22 09:21:22','2022-07-22 09:21:22');
/*!40000 ALTER TABLE `payments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personal_access_tokens`
--
DROP TABLE IF EXISTS `personal_access_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `personal_access_tokens` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`tokenable_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`tokenable_id` bigint unsigned NOT NULL,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`abilities` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`last_used_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personal_access_tokens`
--
LOCK TABLES `personal_access_tokens` WRITE;
/*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `registered_users`
--
DROP TABLE IF EXISTS `registered_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `registered_users` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`club_id` bigint unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `registered_users_user_id_foreign` (`user_id`),
KEY `registered_users_club_id_foreign` (`club_id`),
CONSTRAINT `registered_users_club_id_foreign` FOREIGN KEY (`club_id`) REFERENCES `clubs` (`id`) ON DELETE CASCADE,
CONSTRAINT `registered_users_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `registered_users`
--
LOCK TABLES `registered_users` WRITE;
/*!40000 ALTER TABLE `registered_users` DISABLE KEYS */;
INSERT INTO `registered_users` VALUES (1,3,1,'2022-07-21 00:57:59','2022-07-21 00:57:59'),(2,3,2,'2022-07-22 09:21:33','2022-07-22 09:21:33');
/*!40000 ALTER TABLE `registered_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sliders`
--
DROP TABLE IF EXISTS `sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sliders` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`president_id` bigint unsigned NOT NULL,
`title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `sliders_president_id_foreign` (`president_id`),
CONSTRAINT `sliders_president_id_foreign` FOREIGN KEY (`president_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sliders`
--
LOCK TABLES `sliders` WRITE;
/*!40000 ALTER TABLE `sliders` DISABLE KEYS */;
/*!40000 ALTER TABLE `sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `statements`
--
DROP TABLE IF EXISTS `statements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `statements` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`admin_id` bigint unsigned NOT NULL,
`title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`statement` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `statements_admin_id_foreign` (`admin_id`),
CONSTRAINT `statements_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `statements`
--
LOCK TABLES `statements` WRITE;
/*!40000 ALTER TABLE `statements` DISABLE KEYS */;
INSERT INTO `statements` VALUES (1,1,'welcome','We are pleased to welcome you to the University club management system. We have an excellent reputation for creating innovative entrepreneurs. We aim to give every student in our care the best possible education to prepare them for life beyond University. Through this system, you can view any club of the University and stay connected with us.','2022-07-21 00:13:16','2022-07-21 00:13:16'),(2,1,'about','We are a group of undergraduate students concentrating on forming a community of students that will work as a team to study web development and be interested in digitalization. Through this web application, we hope to bring all the clubs in the University closer to the students through the online methodology.','2022-07-21 00:13:16','2022-07-21 00:13:16'),(3,1,'mission','Our mission is to cultivate each student\'s spiritual, moral, social, emotional, and physical well-being via a learning experience that acknowledges each kid as an individual as well as a valuable asset to society. In addition to academic activities, we hope to make all activities effective in the light of the current situation that is directing students to extracurricular activities.','2022-07-21 00:13:16','2022-07-21 00:13:16'),(4,1,'plan','Due to the Covid-19 pandemic, we plan to carry out the vast majority of our projects online. This system allows us to connect with all our students and exchange information. Students can contact us anytime, and students who wish to join a particular club can register online through this system. It also allows us to move away from using paper and adapt to the modern world by collecting information through technology and efficiently managing it.','2022-07-21 00:13:16','2022-07-21 00:13:16'),(5,1,'vision','Our vision is to manage and maintain the societies within the University efficiently. In response to our concerns about the state of the planet, we are expanding our University and constructing a Green campus, which will give our students ownership, understanding, and duty to the world at large in climate care. We foresee their development into world-class practitioners through regular in-house training and workshops, allowing them to hold their own anywhere in an ever-changing world.','2022-07-21 00:13:16','2022-07-21 00:13:16');
/*!40000 ALTER TABLE `statements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`role` tinyint(1) DEFAULT NULL,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`first_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`full_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`profile_photo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nic` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`dob` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sex` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`degree_program` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`year` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mobile` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address_line_1` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address_line_2` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`city` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`province` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`postal_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`active_status` tinyint(1) NOT NULL DEFAULT '0',
`avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`dark_mode` tinyint(1) NOT NULL DEFAULT '0',
`messenger_color` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#2180f3',
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,1,'Admin','admin@demo.com','2022-06-13 09:13:47','K.T.L.','Sanjula','K.T.L. Sanjula','image/profile_photos/1739061279722089.jpg','200031600357','2022-07-22','Male','BICT','first year','(076) 619-6446','No 01, Wataraka West,','Gintota','Galle','Basnāhira paḷāta','80000','$2y$10$UQMWKz2BJIdqsN0NbIw4MOexYWHVUa4r9UiyzU1frlXuPMahTTTOa',NULL,'2022-07-21 00:13:16','2022-07-22 08:24:57',0,'assets/images/Icons/User/profile_pic.png',0,'#2180f3'),(2,2,'President','president@demo.com','2022-06-13 09:13:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$ZK4ob9qOzvzJ5KuXlJrk0Ova2XwFWvjoSjxAAPMZ9MUWVl6ZpNc9q',NULL,'2022-07-21 00:13:16','2022-07-21 00:13:16',0,'assets/images/Icons/User/profile_pic.png',0,'#2180f3'),(3,3,'Member','member@demo.com','2022-06-13 09:13:47','K.T.L.','Sanjula','K.T.L. Sanjula','image/profile_photos/1739063443142321.jpg','200031600357','2020-06-14','Male','AQT','fourth ye ar','0766196446','No 01, Wataraka West,','Gintota','Galle','Voluptas aut veniam','80000','$2y$10$kxLOgsASn0uLEt1fMe4sy.7eXM1eI9NDVX4wD01nNlmuBeUGLKaY2',NULL,'2022-07-21 00:13:16','2022-07-22 08:59:00',1,'assets/images/Icons/User/profile_pic.png',0,'#2180f3'),(4,3,'Member2','member2@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(5,3,'Member3','member3@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(6,3,'Member4','member4@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(7,3,'Member5','member5@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(8,3,'Member6','member6@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(9,3,'Member7','member7@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(10,3,'Member8','member8@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(11,3,'Member9','member9@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(12,3,'Member10','member10@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(13,3,'Member11','member11@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(14,3,'Member12','member12@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(15,3,'Member13','member13@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(16,3,'Member14','member14@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(17,3,'Member15','member15@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(18,3,'Member16','member16@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(19,3,'Member17','member17@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(20,3,'Member18','member18@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(21,3,'Member19','member19@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(22,3,'Member20','member20@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(23,2,'President2','president2@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(24,2,'Madhurangi','president3@demo.com','2022-07-21 01:21:16','ily','Jones','Liliy Jones','image/profile_photos/1739011344971472.jpg','123456789v','2022-07-21','Female','BICT','first year','(089) 665-7789','87/ A,','Wathumulla , Udugampola','Gampaha','Western','11030','$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-22 08:55:10',0,'',0,'#2180f3'),(25,2,'President4','president4@demo.com','2022-07-21 01:21:16','K.T.L.','Sanjula','K.T.L. Sanjula','image/profile_photos/1739062315479052.jpg','200031600357','1974-04-08','Male','BET','first year','(076) 619-6446','No 01, Wataraka West,','Gintota','Galle','8','80000','$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-22 08:41:04',0,'',0,'#2180f3'),(26,2,'President5','president5@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(27,2,'President6','president6@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(28,2,'President7','president7@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(29,2,'President8','president8@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(30,2,'President9','president9@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3'),(31,2,'President10','president10@demo.com','2022-07-21 01:21:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$jXT.4nkmcKcOePNg3DXOheny9wInJPpuic8cmVPC6w31q92mpT31W',NULL,'2022-07-21 01:18:33','2022-07-21 01:21:16',0,'',0,'#2180f3');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-07-23 22:26:27