Advertisement
outattacker

Untitled

Sep 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.7.2
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost:3306
  6. -- Generation Time: 25 Sep 2018 pada 06.05
  7. -- Versi Server: 5.6.35
  8. -- PHP Version: 7.1.6
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- Database: `db_billing_new`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Struktur dari tabel `task_types`
  21. --
  22.  
  23. CREATE TABLE `task_types` (
  24. `id` int(11) NOT NULL,
  25. `title` varchar(255) NOT NULL,
  26. `slug` varchar(255) NOT NULL,
  27. `is_deleted` enum('Y','N') NOT NULL DEFAULT 'N',
  28. `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  29. `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
  30. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
  31.  
  32. --
  33. -- Dumping data untuk tabel `task_types`
  34. --
  35.  
  36. INSERT INTO `task_types` (`id`, `title`, `slug`, `is_deleted`, `created_at`, `updated_at`) VALUES
  37. (1, 'Ganten', 'ganten', 'Y', '2018-08-22 01:01:36', '2018-08-22 01:02:01'),
  38. (2, 'Testingss', 'testingss', 'Y', '2018-08-22 01:11:04', '2018-08-22 01:11:51'),
  39. (3, 'Monitoring Invoice', 'monitoring-invoice', 'N', '2018-08-24 01:26:39', '2018-08-24 01:26:39'),
  40. (4, 'Pembinaan Pegawai', 'pembinaan-pegawai', 'N', '2018-08-24 01:26:45', '2018-08-24 01:26:45'),
  41. (5, 'Pembinaan User', 'pembinaan-user', 'N', '2018-08-24 01:27:14', '2018-08-24 01:27:14'),
  42. (6, 'Marketing Calon User', 'marketing-calon-user', 'N', '2018-08-24 01:27:27', '2018-08-24 01:27:27');
  43.  
  44. --
  45. -- Indexes for dumped tables
  46. --
  47.  
  48. --
  49. -- Indexes for table `task_types`
  50. --
  51. ALTER TABLE `task_types`
  52. ADD PRIMARY KEY (`id`);
  53.  
  54. --
  55. -- AUTO_INCREMENT for dumped tables
  56. --
  57.  
  58. --
  59. -- AUTO_INCREMENT for table `task_types`
  60. --
  61. ALTER TABLE `task_types`
  62. MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement