· 8 years ago · Mar 21, 2018, 08:24 PM
1-- phpMyAdmin SQL Dump
2-- version 4.7.4
3-- https://www.phpmyadmin.net/
4--
5-- Host: 127.0.0.1:3306
6-- Generation Time: Mar 02, 2018 at 03:20 AM
7-- Server version: 5.7.19
8-- PHP Version: 5.6.31
9
10SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11SET AUTOCOMMIT = 0;
12START TRANSACTION;
13SET 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: `essentialmode`
23--
24
25-- --------------------------------------------------------
26
27--
28-- Table structure for table `paychecks`
29--
30
31DROP TABLE IF EXISTS `paychecks`;
32CREATE TABLE IF NOT EXISTS `paychecks` (
33 `amount` int(11) DEFAULT NULL,
34 `receiver` varchar(60) DEFAULT NULL
35) ENGINE=MyISAM DEFAULT CHARSET=latin1;
36
37--
38-- Dumping data for table `paychecks`
39--
40
41INSERT INTO `paychecks` (`amount`, `receiver`) VALUES
42(200, 'steam:1100001006b7a9d'),
43(200, 'steam:1100001006b7a9d'),
44(200, 'steam:1100001006b7a9d'),
45(200, 'steam:1100001006b7a9d'),
46(200, 'steam:1100001006b7a9d'),
47(200, 'steam:1100001006b7a9d'),
48(200, 'steam:1100001006b7a9d'),
49(200, 'steam:1100001006b7a9d'),
50(200, 'steam:1100001006b7a9d'),
51(200, 'steam:1100001006b7a9d'),
52(200, 'steam:1100001006b7a9d'),
53(200, 'steam:1100001006b7a9d'),
54(200, 'steam:1100001006b7a9d'),
55(200, 'steam:1100001006b7a9d'),
56(200, 'steam:1100001006b7a9d'),
57(200, 'steam:1100001006b7a9d'),
58(200, 'steam:1100001006b7a9d'),
59(200, 'steam:1100001006b7a9d'),
60(200, 'steam:1100001006b7a9d'),
61(200, 'steam:1100001006b7a9d'),
62(200, 'steam:1100001006b7a9d'),
63(200, 'steam:1100001006b7a9d');
64COMMIT;
65
66/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
67/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
68/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;