Skip to content

Commit b786944

Browse files
committed
Exported database data
1 parent ceea330 commit b786944

File tree

1 file changed

+103
-0
lines changed

1 file changed

+103
-0
lines changed

id5230015_forum.sql

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 4.7.7
3+
-- https://www.phpmyadmin.net/
4+
--
5+
-- Host: localhost:3306
6+
-- Generation Time: Jul 19, 2018 at 06:48 PM
7+
-- Server version: 10.1.31-MariaDB
8+
-- PHP Version: 7.0.26
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: `id5230015_forum`
23+
--
24+
25+
-- --------------------------------------------------------
26+
27+
--
28+
-- Table structure for table `threads`
29+
--
30+
31+
CREATE TABLE `threads` (
32+
`thread_id` int(11) NOT NULL,
33+
`subject` varchar(9999) COLLATE utf8_unicode_ci NOT NULL,
34+
`content` mediumtext COLLATE utf8_unicode_ci NOT NULL,
35+
`creator` varchar(9999) COLLATE utf8_unicode_ci NOT NULL,
36+
`views` int(11) NOT NULL,
37+
`date` date NOT NULL
38+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
39+
40+
-- --------------------------------------------------------
41+
42+
--
43+
-- Table structure for table `users`
44+
--
45+
46+
CREATE TABLE `users` (
47+
`id` int(11) NOT NULL,
48+
`profile_pic` varchar(9999) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'images/default_user.png',
49+
`username` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
50+
`password` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
51+
`replies` int(11) NOT NULL DEFAULT '0',
52+
`score` int(11) NOT NULL DEFAULT '0',
53+
`topics` int(11) NOT NULL DEFAULT '0'
54+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
55+
56+
--
57+
-- Dumping data for table `users`
58+
--
59+
60+
INSERT INTO `users` (`id`, `profile_pic`, `username`, `password`, `replies`, `score`, `topics`) VALUES
61+
(1, 'images/FVOmXrK.jpg', 'Debashish', '$2a$09$0PW8gtxNOSLjnp1ldZFok.RkA8z5JWRXEPt30CCt2Lrwu3VoWk7gq', 0, 0, 0),
62+
(2, 'images/default_user.png', 'Zanark', '$2a$09$fFMRssUOQMmmXbFwkFn4DeVorE05sRWREUv6sYFbdMDwP.w1hnQcq', 0, 0, 0),
63+
(3, 'images/FVOmXrK.jpg', 'admin', '$2a$09$q8usQ7ACQWLoLpemTZ7WVe/OOBWJGSghaqI3zGfvesizJ.jP5Igvu', 0, 0, 0),
64+
(4, 'images/armenian_beauty_tavush_hayk_photography_2-wallpaper-1366x768.jpg', 'Satwik', '$2a$09$PMXuC9uYko7v7PXidN9qnO9ZmSwWB.PJWEv5R6dXtQj1lttfkfzZa', 0, 0, 0),
65+
(5, 'images/default_user.png', 'Debashish', '$2a$09$aBJ3UC7qvM8UE9rX5gS6HOKTxU0k.8.gG/FLOfDMmpM2Z0nq/ffHa', 0, 0, 0),
66+
(6, 'images/default_user.png', 'rupesh', '$2a$09$gUL5UhqhFw1ccVQAp5Q8Ou/CM89Hz5qfICjSp5wKRy2iAzPkubbSK', 0, 0, 0);
67+
68+
--
69+
-- Indexes for dumped tables
70+
--
71+
72+
--
73+
-- Indexes for table `threads`
74+
--
75+
ALTER TABLE `threads`
76+
ADD PRIMARY KEY (`thread_id`);
77+
78+
--
79+
-- Indexes for table `users`
80+
--
81+
ALTER TABLE `users`
82+
ADD PRIMARY KEY (`id`);
83+
84+
--
85+
-- AUTO_INCREMENT for dumped tables
86+
--
87+
88+
--
89+
-- AUTO_INCREMENT for table `threads`
90+
--
91+
ALTER TABLE `threads`
92+
MODIFY `thread_id` int(11) NOT NULL AUTO_INCREMENT;
93+
94+
--
95+
-- AUTO_INCREMENT for table `users`
96+
--
97+
ALTER TABLE `users`
98+
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
99+
COMMIT;
100+
101+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
102+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
103+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy