wecuro_blog/docs/mail_body_settings.sql

71 lines
2.2 KiB
SQL
Executable File

-- phpMyAdmin SQL Dump
-- version 5.1.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Oct 20, 2021 at 01:00 PM
-- Server version: 10.4.18-MariaDB
-- PHP Version: 7.4.18
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: `wecuro_system2`
--
-- --------------------------------------------------------
--
-- Table structure for table `mail_body_settings`
--
CREATE TABLE `mail_body_settings` (
`id` int(11) NOT NULL,
`name` varchar(200) DEFAULT NULL,
`slug` varchar(100) NOT NULL,
`message` longtext DEFAULT NULL,
`message_interval` varchar(100) DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `mail_body_settings`
--
INSERT INTO `mail_body_settings` (`id`, `name`, `slug`, `message`, `message_interval`, `status`) VALUES
(1, 'UAS Certification', 'uas-certification', '<p>&nbsp;</p><h3>Hello ,</h3><h3>&nbsp;</h3><h3>Welcome to WeCuro</h3><h3>&nbsp;</h3><h3>Please complete UAS Certification training.</h3><h3>&nbsp;</h3><h3>&nbsp;</h3><h3>UAS Certification link: http://localhost/hospital-management/</h3><h3>&nbsp;</h3><p>&nbsp;</p>', NULL, 1),
(2, 'Pending Application', 'pending-application', '<p>&nbsp;</p><h3>Hello ,</h3><h3>&nbsp;</h3><h3>Welcome to WeCuro</h3><h3>&nbsp;</h3><h3>Please complete Your registration Form.</h3><h3>&nbsp;</h3><h3>&nbsp;</h3><p>&nbsp;</p>', NULL, 1);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `mail_body_settings`
--
ALTER TABLE `mail_body_settings`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `mail_body_settings`
--
ALTER TABLE `mail_body_settings`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
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 */;