-- phpMyAdmin SQL Dump -- version 4.9.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Sep 19, 2022 at 11:29 AM -- Server version: 5.7.39 -- PHP Version: 7.4.30 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: `devndco_astrid` -- -- -------------------------------------------------------- -- -- Table structure for table `reservation_detail` -- CREATE TABLE `reservation_detail` ( `id` bigint(20) UNSIGNED NOT NULL, `name_th` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name_en` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description_th` text COLLATE utf8mb4_unicode_ci, `description_en` text COLLATE utf8mb4_unicode_ci, `image` varchar(700) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `reservation_detail` -- INSERT INTO `reservation_detail` (`id`, `name_th`, `name_en`, `description_th`, `description_en`, `image`, `created_at`, `updated_at`) VALUES (1, 'Retail', 'Retail', '<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim</span></p>', '<p><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim</span></p>', '/storage/product/product-1-1663561125.png', '2022-09-19 04:07:16', '2022-09-19 04:19:19'); -- -- Indexes for dumped tables -- -- -- Indexes for table `reservation_detail` -- ALTER TABLE `reservation_detail` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `reservation_detail` -- ALTER TABLE `reservation_detail` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; 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 */;