-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
122 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,121 +1,121 @@ | ||
-- phpMyAdmin SQL Dump | ||
-- version 5.2.1 | ||
-- https://www.phpmyadmin.net/ | ||
-- | ||
-- Host: localhost:3306 | ||
-- Generation Time: May 25, 2024 at 04:36 PM | ||
-- Server version: 8.0.30 | ||
-- PHP Version: 8.2.19 | ||
|
||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | ||
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: `phpbot` | ||
-- | ||
|
||
-- -------------------------------------------------------- | ||
|
||
-- | ||
-- Table structure for table `chatbot` | ||
-- | ||
|
||
CREATE TABLE `chatbot` ( | ||
`id` int NOT NULL, | ||
`messages` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci, | ||
`response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; | ||
|
||
-- -------------------------------------------------------- | ||
|
||
-- | ||
-- Table structure for table `messages` | ||
-- | ||
|
||
CREATE TABLE `messages` ( | ||
`id` int NOT NULL, | ||
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; | ||
|
||
-- -------------------------------------------------------- | ||
|
||
-- | ||
-- Table structure for table `responses` | ||
-- | ||
|
||
CREATE TABLE `responses` ( | ||
`id` int NOT NULL, | ||
`response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci, | ||
`message_id` int NOT NULL | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; | ||
|
||
-- | ||
-- Indexes for dumped tables | ||
-- | ||
|
||
-- | ||
-- Indexes for table `chatbot` | ||
-- | ||
ALTER TABLE `chatbot` | ||
ADD PRIMARY KEY (`id`); | ||
|
||
-- | ||
-- Indexes for table `messages` | ||
-- | ||
ALTER TABLE `messages` | ||
ADD PRIMARY KEY (`id`); | ||
ALTER TABLE `messages` ADD FULLTEXT KEY `message` (`message`); | ||
ALTER TABLE `messages` ADD FULLTEXT KEY `message_2` (`message`); | ||
|
||
-- | ||
-- Indexes for table `responses` | ||
-- | ||
ALTER TABLE `responses` | ||
ADD PRIMARY KEY (`id`), | ||
ADD KEY `message_id` (`message_id`); | ||
ALTER TABLE `responses` ADD FULLTEXT KEY `response` (`response`); | ||
ALTER TABLE `responses` ADD FULLTEXT KEY `response_2` (`response`); | ||
|
||
-- | ||
-- AUTO_INCREMENT for dumped tables | ||
-- | ||
|
||
-- | ||
-- AUTO_INCREMENT for table `chatbot` | ||
-- | ||
ALTER TABLE `chatbot` | ||
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=112133; | ||
|
||
-- | ||
-- AUTO_INCREMENT for table `messages` | ||
-- | ||
ALTER TABLE `messages` | ||
MODIFY `id` int NOT NULL AUTO_INCREMENT; | ||
|
||
-- | ||
-- AUTO_INCREMENT for table `responses` | ||
-- | ||
ALTER TABLE `responses` | ||
MODIFY `id` int NOT NULL AUTO_INCREMENT; | ||
|
||
-- | ||
-- Constraints for dumped tables | ||
-- | ||
|
||
-- | ||
-- Constraints for table `responses` | ||
-- | ||
ALTER TABLE `responses` | ||
ADD CONSTRAINT `responses_ibfk_1` FOREIGN KEY (`message_id`) REFERENCES `messages` (`id`); | ||
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 */; | ||
-- phpMyAdmin SQL Dump | ||
-- version 5.2.1 | ||
-- https://www.phpmyadmin.net/ | ||
-- | ||
-- Host: localhost:3306 | ||
-- Generation Time: May 25, 2024 at 04:36 PM | ||
-- Server version: 8.0.30 | ||
-- PHP Version: 8.2.19 | ||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | ||
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: `phpbot` | ||
-- | ||
-- -------------------------------------------------------- | ||
-- | ||
-- Table structure for table `chatbot` | ||
-- | ||
CREATE TABLE `chatbot` ( | ||
`id` int NOT NULL, | ||
`messages` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci, | ||
`response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; | ||
-- -------------------------------------------------------- | ||
-- | ||
-- Table structure for table `messages` | ||
-- | ||
CREATE TABLE `messages` ( | ||
`id` int NOT NULL, | ||
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; | ||
-- -------------------------------------------------------- | ||
-- | ||
-- Table structure for table `responses` | ||
-- | ||
CREATE TABLE `responses` ( | ||
`id` int NOT NULL, | ||
`response` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci, | ||
`message_id` int NOT NULL | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; | ||
-- | ||
-- Indexes for dumped tables | ||
-- | ||
-- | ||
-- Indexes for table `chatbot` | ||
-- | ||
ALTER TABLE `chatbot` | ||
ADD PRIMARY KEY (`id`); | ||
-- | ||
-- Indexes for table `messages` | ||
-- | ||
ALTER TABLE `messages` | ||
ADD PRIMARY KEY (`id`); | ||
ALTER TABLE `messages` ADD FULLTEXT KEY `message` (`message`); | ||
ALTER TABLE `messages` ADD FULLTEXT KEY `message_2` (`message`); | ||
-- | ||
-- Indexes for table `responses` | ||
-- | ||
ALTER TABLE `responses` | ||
ADD PRIMARY KEY (`id`), | ||
ADD KEY `message_id` (`message_id`); | ||
ALTER TABLE `responses` ADD FULLTEXT KEY `response` (`response`); | ||
ALTER TABLE `responses` ADD FULLTEXT KEY `response_2` (`response`); | ||
-- | ||
-- AUTO_INCREMENT for dumped tables | ||
-- | ||
-- | ||
-- AUTO_INCREMENT for table `chatbot` | ||
-- | ||
ALTER TABLE `chatbot` | ||
MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=112133; | ||
-- | ||
-- AUTO_INCREMENT for table `messages` | ||
-- | ||
ALTER TABLE `messages` | ||
MODIFY `id` int NOT NULL AUTO_INCREMENT; | ||
-- | ||
-- AUTO_INCREMENT for table `responses` | ||
-- | ||
ALTER TABLE `responses` | ||
MODIFY `id` int NOT NULL AUTO_INCREMENT; | ||
-- | ||
-- Constraints for dumped tables | ||
-- | ||
-- | ||
-- Constraints for table `responses` | ||
-- | ||
ALTER TABLE `responses` | ||
ADD CONSTRAINT `responses_ibfk_1` FOREIGN KEY (`message_id`) REFERENCES `messages` (`id`); | ||
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 */; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters