-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdatabase.sql.sql
138 lines (114 loc) · 3.09 KB
/
database.sql.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: dbdp
-- Generation Time: Jun 07, 2023 at 07:56 PM
-- Server version: 8.0.33
-- PHP Version: 8.1.17
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `clickfarm`
--
-- --------------------------------------------------------
--
-- Table structure for table `resources`
--
CREATE TABLE `resources` (
`ID` int NOT NULL,
`ResType` varchar(64) NOT NULL,
`Amount` bigint NOT NULL,
`Previous` bigint NOT NULL,
`Price` int NOT NULL,
`PriceIndex` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
--
-- Dumping data for table `resources`
--
INSERT INTO `resources` (`ID`, `ResType`, `Amount`, `Previous`, `Price`, `PriceIndex`) VALUES
(1, 'used_fuelrod', 0, 0, 0, 1),
(2, 'steel', 1, 0, 0, 1),
(3, 'FlourHigh', 0, 0, 391, 1),
(4, 'eggs', 864000, 0, 0, 1),
(5, 'GrainLow', 0, 0, 487, 1),
(6, 'FlourLow', 0, 0, 511, 1),
(7, 'GrainHigh', 0, 0, 72, 1),
(8, 'Pasta', 0, 0, 0, 1),
(9, 'Coal', 0, 0, 31, 1),
(10, 'Oil', 0, 0, 18, 1),
(11, 'CopperOre', 0, 0, 229, 1);
-- --------------------------------------------------------
--
-- Table structure for table `sales`
--
CREATE TABLE `sales` (
`id` int NOT NULL,
`user` varchar(40) NOT NULL,
`item` int NOT NULL,
`profit` float NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`amount` bigint DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- --------------------------------------------------------
--
-- Table structure for table `saves`
--
CREATE TABLE `saves` (
`id` int NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`user` varchar(40) NOT NULL,
`savegame` varchar(9999) NOT NULL,
`persistent` tinyint(1) NOT NULL,
`modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`saveid` varchar(8) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `resources`
--
ALTER TABLE `resources`
ADD PRIMARY KEY (`ID`),
ADD UNIQUE KEY `ResType` (`ResType`);
--
-- Indexes for table `sales`
--
ALTER TABLE `sales`
ADD PRIMARY KEY (`id`),
ADD KEY `user` (`user`);
--
-- Indexes for table `saves`
--
ALTER TABLE `saves`
ADD PRIMARY KEY (`id`),
ADD KEY `user` (`user`),
ADD KEY `user_2` (`user`,`saveid`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `resources`
--
ALTER TABLE `resources`
MODIFY `ID` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `sales`
--
ALTER TABLE `sales`
MODIFY `id` int NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `saves`
--
ALTER TABLE `saves`
MODIFY `id` int NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;