-
Notifications
You must be signed in to change notification settings - Fork 0
/
scramble.sql
37 lines (31 loc) · 1.29 KB
/
scramble.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
# ************************************************************
# Sequel Pro SQL dump
# Version 4499
#
# http://www.sequelpro.com/
# https://github.com/sequelpro/sequelpro
#
# Host: cloud.davidwaiting.com (MySQL 5.5.46-0ubuntu0.14.04.2)
# Database: scramble_db
# Generation Time: 2016-01-20 18:17:11 +0000
# ************************************************************
/*!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 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Dump of table high_scores
# ------------------------------------------------------------
DROP TABLE IF EXISTS `high_scores`;
CREATE TABLE `high_scores` (
`score_id` int(11) NOT NULL AUTO_INCREMENT,
`score` int(20) DEFAULT NULL,
`level` int(10) DEFAULT NULL,
`initials` varchar(30) DEFAULT NULL,
`email_address` varchar(100) DEFAULT NULL,
`ip_address` varchar(100) DEFAULT NULL,
`time_stamp` varchar(100) DEFAULT NULL,
PRIMARY KEY (`score_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf32;