Skip to content

Commit 7c8f871

Browse files
author
Rubi Jihantoro
authored
Add files via upload
1 parent 53e483b commit 7c8f871

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

project_jb.sql

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 4.7.2
3+
-- https://www.phpmyadmin.net/
4+
--
5+
-- Host: localhost
6+
-- Generation Time: Jul 10, 2017 at 01:38 PM
7+
-- Server version: 5.7.18-0ubuntu0.16.04.1
8+
-- PHP Version: 7.0.15-0ubuntu0.16.04.4
9+
10+
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11+
SET AUTOCOMMIT = 0;
12+
START TRANSACTION;
13+
SET time_zone = "+00:00";
14+
15+
16+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
17+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
18+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
19+
/*!40101 SET NAMES utf8mb4 */;
20+
21+
--
22+
-- Database: `project_jb`
23+
--
24+
25+
-- --------------------------------------------------------
26+
27+
--
28+
-- Table structure for table `main_posts`
29+
--
30+
31+
CREATE TABLE `main_posts` (
32+
`id` bigint(25) NOT NULL,
33+
`wdyw` int(11) NOT NULL,
34+
`url` varchar(225) NOT NULL,
35+
`cat` varchar(225) DEFAULT NULL,
36+
`data` longtext NOT NULL,
37+
`views` bigint(20) NOT NULL DEFAULT '0',
38+
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
39+
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
40+
41+
--
42+
-- Dumping data for table `main_posts`
43+
--
44+
45+
INSERT INTO `main_posts` (`id`, `wdyw`, `url`, `cat`, `data`, `views`, `date`) VALUES
46+
(1, 1, 'blog-baru-rubi-jihantoro', 'programming', 'Blog baru rubi jihantoro(`,`)ini adalah blog baru rubi jihantoro, semoga dapet itu, amin dah, Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo. Duis aute irure dolor in reprehenderit in voluptate velit esse dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat nonproident, sunt in culpa qui officia deserunt mollit anim id est laborum.(`,`)blogbaru.jpg', 14, '2017-07-10 02:02:22'),
47+
(2, 2, 'blog-baru-rubi-jihantoro', '', 'Rubi(`,`)yasssss, this is awesome(`,`)jihantoro8@gmail.com', 0, '2017-07-10 01:19:56'),
48+
(3, 2, 'blog-baru-rubi-jihantoro', NULL, 'Rubi(`,`)terimakaish(`,`)jihantoro8@gmail.com', 0, '2017-07-10 01:36:40'),
49+
(4, 2, 'blog-baru-rubi-jihantoro', NULL, 'jojo(`,`)etdah(`,`)jojo@fa.fa', 0, '2017-07-10 01:38:29');
50+
51+
--
52+
-- Indexes for dumped tables
53+
--
54+
55+
--
56+
-- Indexes for table `main_posts`
57+
--
58+
ALTER TABLE `main_posts`
59+
ADD PRIMARY KEY (`id`);
60+
61+
--
62+
-- AUTO_INCREMENT for dumped tables
63+
--
64+
65+
--
66+
-- AUTO_INCREMENT for table `main_posts`
67+
--
68+
ALTER TABLE `main_posts`
69+
MODIFY `id` bigint(25) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;COMMIT;
70+
71+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
72+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
73+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)