-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.sql
119 lines (97 loc) · 3.31 KB
/
chat.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
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Oct 09, 2021 at 02:32 PM
-- Server version: 10.1.30-MariaDB
-- PHP Version: 5.6.33
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
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: `cpmvj`
--
-- --------------------------------------------------------
--
-- Table structure for table `chat_message_cpmvj`
--
CREATE TABLE `chat_message_cpmvj` (
`chat_message_id` int(11) NOT NULL,
`chat_message_sender_id` int(11) NOT NULL,
`chat_message_receiver_id` int(11) NOT NULL,
`chat_message` text COLLATE utf8_unicode_ci NOT NULL,
`chat_message_status` enum('No','Yes') COLLATE utf8_unicode_ci NOT NULL,
`chat_message_datetime` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `chat_request_cpmvj`
--
CREATE TABLE `chat_request_cpmvj` (
`chat_request_id` int(11) NOT NULL,
`chat_request_sender_id` int(11) NOT NULL,
`chat_request_receiver_id` int(11) NOT NULL,
`chat_request_status` enum('Send','Accept','Reject') COLLATE utf8_unicode_ci NOT NULL,
`chat_request_datetime` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `user_cpmvj`
--
CREATE TABLE `user_cpmvj` (
`user_id` int(11) NOT NULL,
`user_first_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_last_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_image` varchar(1080) COLLATE utf8_unicode_ci NOT NULL,
`user_status` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`user_datetime` datetime NOT NULL,
`user_verification_code` varchar(100) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `chat_message_cpmvj`
--
ALTER TABLE `chat_message_cpmvj`
ADD PRIMARY KEY (`chat_message_id`);
--
-- Indexes for table `chat_request_cpmvj`
--
ALTER TABLE `chat_request_cpmvj`
ADD PRIMARY KEY (`chat_request_id`);
--
-- Indexes for table `user_cpmvj`
--
ALTER TABLE `user_cpmvj`
ADD PRIMARY KEY (`user_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `chat_message_cpmvj`
--
ALTER TABLE `chat_message_cpmvj`
MODIFY `chat_message_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=43;
--
-- AUTO_INCREMENT for table `chat_request_cpmvj`
--
ALTER TABLE `chat_request_cpmvj`
MODIFY `chat_request_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `user_cpmvj`
--
ALTER TABLE `user_cpmvj`
MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
COMMIT;
/*!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 */;