Advertisement
ikamal7

bkash-sms

Feb 24th, 2021
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.20 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.9.5
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost:8889
  6. -- Generation Time: Feb 24, 2021 at 11:08 AM
  7. -- Server version: 5.7.30
  8. -- PHP Version: 7.4.9
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `bkash-sms`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Table structure for table `bkash_messages`
  21. --
  22.  
  23. CREATE TABLE `bkash_messages` (
  24.   `id` int(11) NOT NULL,
  25.   `message` longtext NOT NULL,
  26.   `created` datetime NOT NULL
  27. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  28.  
  29. --
  30. -- Dumping data for table `bkash_messages`
  31. --
  32.  
  33. INSERT INTO `bkash_messages` (`id`, `message`, `created`) VALUES
  34. (1, 'John Doe', '2012-04-01 02:12:30'),
  35. (2, 'John Doe 2', '2012-06-01 02:12:30'),
  36. (3, 'John Doe 3', '2012-05-01 02:12:30'),
  37. (4, 'John Doe 4', '2012-07-01 02:12:30');
  38.  
  39. --
  40. -- Indexes for dumped tables
  41. --
  42.  
  43. --
  44. -- Indexes for table `bkash_messages`
  45. --
  46. ALTER TABLE `bkash_messages`
  47.   ADD PRIMARY KEY (`id`);
  48.  
  49. --
  50. -- AUTO_INCREMENT for dumped tables
  51. --
  52.  
  53. --
  54. -- AUTO_INCREMENT for table `bkash_messages`
  55. --
  56. ALTER TABLE `bkash_messages`
  57.   MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement