c485371a by G Manojkumar

central server table for sms

1 parent 7035f444
-- phpMyAdmin SQL Dump
-- version 4.5.3.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Nov 30, 2018 at 12:00 PM
-- Server version: 10.0.28-MariaDB
-- PHP Version: 5.6.29
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `kstych_flexydial`
--
-- --------------------------------------------------------
--
-- Table structure for table `sms_report`
--
CREATE TABLE `sms_report` (
`id` int(10) NOT NULL,
`server` int(10) NOT NULL,
`sms_id` int(11) NOT NULL,
`ins_date_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`created_at` varchar(50) NOT NULL,
`message_time` datetime NOT NULL,
`server_ip` varchar(20) NOT NULL,
`call_id` int(20) NOT NULL,
`agent_name` varchar(30) NOT NULL,
`subdispo` varchar(60) NOT NULL,
`number` varchar(25) NOT NULL,
`message` varchar(50000) NOT NULL,
`response` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `sms_report`
--
ALTER TABLE `sms_report`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `sms_report`
--
ALTER TABLE `sms_report`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT;
/*!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 */;
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!