forked from earth-faucet/faucet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstructure.sql
More file actions
57 lines (46 loc) · 1.52 KB
/
structure.sql
File metadata and controls
57 lines (46 loc) · 1.52 KB
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
-- phpMyAdmin SQL Dump
-- version 3.3.2deb1ubuntu1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Nov 18, 2013 at 10:40 PM
-- Server version: 5.1.70
-- PHP Version: 5.3.2-1ubuntu4.21
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
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 utf8 */;
--
-- Database: `faucet`
--
-- --------------------------------------------------------
--
-- Table structure for table `balances`
--
CREATE TABLE IF NOT EXISTS `balances` (
`email` varchar(100) NOT NULL,
`balance` int(11) NOT NULL,
`totalbalance` int(11) NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`referredby` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
-- --------------------------------------------------------
--
-- Table structure for table `dispenses`
--
CREATE TABLE IF NOT EXISTS `dispenses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`amount` int(11) NOT NULL,
`dispensed` datetime NOT NULL,
`email` varchar(100) NOT NULL,
`ip` varchar(50) NOT NULL,
`useragent` varchar(250) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ;
/*!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 */;