Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- phpMyAdmin SQL Dump
- -- version 4.9.5
- -- https://www.phpmyadmin.net/
- --
- -- Host: localhost:8889
- -- Generation Time: Feb 24, 2021 at 11:08 AM
- -- Server version: 5.7.30
- -- PHP Version: 7.4.9
- SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
- SET time_zone = "+00:00";
- --
- -- Database: `bkash-sms`
- --
- -- --------------------------------------------------------
- --
- -- Table structure for table `bkash_messages`
- --
- CREATE TABLE `bkash_messages` (
- `id` int(11) NOT NULL,
- `message` longtext NOT NULL,
- `created` datetime NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- --
- -- Dumping data for table `bkash_messages`
- --
- INSERT INTO `bkash_messages` (`id`, `message`, `created`) VALUES
- (1, 'John Doe', '2012-04-01 02:12:30'),
- (2, 'John Doe 2', '2012-06-01 02:12:30'),
- (3, 'John Doe 3', '2012-05-01 02:12:30'),
- (4, 'John Doe 4', '2012-07-01 02:12:30');
- --
- -- Indexes for dumped tables
- --
- --
- -- Indexes for table `bkash_messages`
- --
- ALTER TABLE `bkash_messages`
- ADD PRIMARY KEY (`id`);
- --
- -- AUTO_INCREMENT for dumped tables
- --
- --
- -- AUTO_INCREMENT for table `bkash_messages`
- --
- ALTER TABLE `bkash_messages`
- MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement