HEX
Server: Apache
System: Linux v38079.2is.nl 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: democfellows (10015)
PHP: 8.1.34
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/creativefellows.nl/kika.creativefellows.nl/db.sql.txt
-- phpMyAdmin SQL Dump
-- version 4.7.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Gegenereerd op: 17 jan 2019 om 17:24
-- Serverversie: 5.6.35
-- PHP-versie: 5.6.30

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";

--
-- Database: `kika_roulette`
--

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `games`
--

CREATE TABLE `games` (
  `game_id` int(10) NOT NULL,
  `name` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `users` int(10) NOT NULL DEFAULT '0',
  `result` int(10) NOT NULL DEFAULT '0',
  `closed` int(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Gegevens worden geëxporteerd voor tabel `games`
--

INSERT INTO `games` (`game_id`, `name`, `description`, `users`, `result`, `closed`) VALUES
(1, 'Jumbo Boodschappenbonnen', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. ', 2, 0, 0),
(2, 'Bioscoopbonnen', 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. ', 3, 0, 0),
(3, 'Bongo Tafel voor Twee', 'fdsaf ads fdsafdasfdsa', 3, 0, 0),
(4, 'High Tea Deluxe', 'fdsa fdasfdsa fdfdsa', 2, 0, 0),
(5, 'de naam 22222', 'omschrijving 2', 2, 16, 0),
(6, 'zichtbaar spel', 'fdfdsaf dsafdafdsa', 2, 0, 0);

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `game_users`
--

CREATE TABLE `game_users` (
  `game_user_id` int(10) NOT NULL,
  `user_id` int(10) NOT NULL,
  `game_id` int(10) NOT NULL,
  `bet` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Gegevens worden geëxporteerd voor tabel `game_users`
--

INSERT INTO `game_users` (`game_user_id`, `user_id`, `game_id`, `bet`) VALUES
(1, 1, 1, 'even'),
(2, 1, 2, '13-24'),
(7, 2, 3, '1-12'),
(8, 3, 3, '13-24'),
(9, 1, 4, 'even'),
(10, 1, 3, '25-36');

-- --------------------------------------------------------

--
-- Tabelstructuur voor tabel `users`
--

CREATE TABLE `users` (
  `user_id` int(11) NOT NULL,
  `admin` int(1) NOT NULL DEFAULT '0',
  `email` varchar(255) NOT NULL,
  `phone` varchar(255) NOT NULL,
  `saldo` int(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Gegevens worden geëxporteerd voor tabel `users`
--

INSERT INTO `users` (`user_id`, `admin`, `email`, `phone`, `saldo`) VALUES
(1, 0, 'bas@creativefellows.nl', '0618409178', 50),
(2, 0, 'patrick@creativefellows.nl', '06', 25),
(3, 0, 'eva.rozenbrand@gmail.com', '0628534026', 0),
(4, 1, 'admin', 'admin', 0);

--
-- Indexen voor geëxporteerde tabellen
--

--
-- Indexen voor tabel `games`
--
ALTER TABLE `games`
  ADD PRIMARY KEY (`game_id`);

--
-- Indexen voor tabel `game_users`
--
ALTER TABLE `game_users`
  ADD PRIMARY KEY (`game_user_id`);

--
-- Indexen voor tabel `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`user_id`);

--
-- AUTO_INCREMENT voor geëxporteerde tabellen
--

--
-- AUTO_INCREMENT voor een tabel `games`
--
ALTER TABLE `games`
  MODIFY `game_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT voor een tabel `game_users`
--
ALTER TABLE `game_users`
  MODIFY `game_user_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT voor een tabel `users`
--
ALTER TABLE `users`
  MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;