Update grublox.sql

This commit is contained in:
Mario 2023-02-13 21:22:49 +02:00 committed by GitHub
parent e3d272a209
commit 54fb7ef36a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 13 deletions

View File

@ -3,7 +3,7 @@
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Feb 13, 2023 at 10:13 AM
-- Generation Time: Feb 13, 2023 at 08:22 PM
-- Server version: 10.4.25-MariaDB
-- PHP Version: 8.1.10
@ -27,7 +27,7 @@ SET time_zone = "+00:00";
-- Table structure for table `catalog`
--
CREATE TABLE IF NOT EXISTS `catalog` (
CREATE TABLE `catalog` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`description` varchar(255) NOT NULL,
@ -47,7 +47,7 @@ CREATE TABLE IF NOT EXISTS `catalog` (
-- Dumping data for table `catalog`
--
REPLACE INTO `catalog` (`id`, `name`, `description`, `creator`, `price`, `type`, `sales`, `thumbnail`, `date`, `lastupdated`, `limited`, `stock`, `state`) VALUES
INSERT INTO `catalog` (`id`, `name`, `description`, `creator`, `price`, `type`, `sales`, `thumbnail`, `date`, `lastupdated`, `limited`, `stock`, `state`) VALUES
(11, 'qzip', 'qzip for sale im bein sold psl help', 1, 1, 'hats', 2, 'https://qzip.lol/assets/img/qzip.png', '2023-02-12 13:25:34', '2023-02-12 13:25:34', 0, 0, 'approved'),
(12, 'gzip', 'osdfdssdjs', 1, 1, 'pants', 2231, 'https://cdn-icons-png.flaticon.com/512/29/29505.png', '2023-02-12 13:25:34', '2023-02-12 13:25:34', 1, 0, 'approved');
@ -57,7 +57,7 @@ REPLACE INTO `catalog` (`id`, `name`, `description`, `creator`, `price`, `type`,
-- Table structure for table `comments`
--
CREATE TABLE IF NOT EXISTS `comments` (
CREATE TABLE `comments` (
`id` int(11) NOT NULL,
`user` int(11) NOT NULL,
`type` varchar(250) NOT NULL,
@ -70,7 +70,7 @@ CREATE TABLE IF NOT EXISTS `comments` (
-- Table structure for table `friends`
--
CREATE TABLE IF NOT EXISTS `friends` (
CREATE TABLE `friends` (
`id` int(11) NOT NULL,
`user` int(11) NOT NULL,
`state` varchar(50) NOT NULL DEFAULT 'pending',
@ -81,7 +81,7 @@ CREATE TABLE IF NOT EXISTS `friends` (
-- Dumping data for table `friends`
--
REPLACE INTO `friends` (`id`, `user`, `state`, `friend`) VALUES
INSERT INTO `friends` (`id`, `user`, `state`, `friend`) VALUES
(1, 1, 'approved', 1);
-- --------------------------------------------------------
@ -90,7 +90,7 @@ REPLACE INTO `friends` (`id`, `user`, `state`, `friend`) VALUES
-- Table structure for table `games`
--
CREATE TABLE IF NOT EXISTS `games` (
CREATE TABLE `games` (
`id` int(11) NOT NULL,
`name` varchar(50) NOT NULL,
`description` varchar(255) NOT NULL,
@ -106,7 +106,7 @@ CREATE TABLE IF NOT EXISTS `games` (
-- Dumping data for table `games`
--
REPLACE INTO `games` (`id`, `name`, `description`, `creator`, `accessKey`, `state`, `date`, `updateddate`, `thumbnail`) VALUES
INSERT INTO `games` (`id`, `name`, `description`, `creator`, `accessKey`, `state`, `date`, `updateddate`, `thumbnail`) VALUES
(1818, 'Crossroads', 'The classic ROBLOX level is back!', 1, '69', '', '2023-02-13 10:38:28', '2023-02-13 10:38:28', '');
-- --------------------------------------------------------
@ -115,11 +115,13 @@ REPLACE INTO `games` (`id`, `name`, `description`, `creator`, `accessKey`, `stat
-- Table structure for table `jobs`
--
CREATE TABLE IF NOT EXISTS `jobs` (
CREATE TABLE `jobs` (
`id` int(11) NOT NULL,
`jobid` varchar(50) NOT NULL,
`placeid` int(11) NOT NULL,
`port` int(11) NOT NULL
`port` int(11) NOT NULL,
`ip` varchar(50) NOT NULL,
`isonline` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
@ -128,7 +130,7 @@ CREATE TABLE IF NOT EXISTS `jobs` (
-- Table structure for table `tokens`
--
CREATE TABLE IF NOT EXISTS `tokens` (
CREATE TABLE `tokens` (
`id` int(11) NOT NULL,
`token` varchar(500) NOT NULL,
`placeid` int(11) NOT NULL,
@ -143,7 +145,7 @@ CREATE TABLE IF NOT EXISTS `tokens` (
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
CREATE TABLE `users` (
`id` int(11) NOT NULL,
`username` varchar(20) NOT NULL,
`password` varchar(450) NOT NULL,
@ -158,7 +160,7 @@ CREATE TABLE IF NOT EXISTS `users` (
-- Dumping data for table `users`
--
REPLACE INTO `users` (`id`, `username`, `password`, `date`, `description`, `money`, `lastPaid`, `admin`) VALUES
INSERT INTO `users` (`id`, `username`, `password`, `date`, `description`, `money`, `lastPaid`, `admin`) VALUES
(1, 'qzip', '$2y$10$AS751CiLVhlbLKo.T9CSVuc81sk8OxC2aWCJzhXac/m8m.J3.pezi', '2023-02-05 18:52:48', NULL, 2460, '1676646382', 1),
(2, 'Mario', '$2y$10$JP1R1NHQtObxxpUH86/LuO8uSi6T.4SoTlk2TGFIpuyAFYkZMgQpu', '2023-02-13 10:15:34', NULL, 35, '1676276134', 0);