-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstats.sql
More file actions
34 lines (28 loc) · 967 Bytes
/
Copy pathstats.sql
File metadata and controls
34 lines (28 loc) · 967 Bytes
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
-- phpMyAdmin SQL Dump
-- version 3.4.10.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Dec 08, 2012 at 04:11 PM
-- Server version: 5.5.23
-- PHP Version: 5.2.17
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
-- --------------------------------------------------------
--
-- Table structure for table `stats`
--
CREATE TABLE IF NOT EXISTS `stats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`value` int(11) NOT NULL DEFAULT '0',
`lastUpdated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `stats`
--
INSERT INTO `stats` (`id`, `name`, `value`, `lastUpdated`) VALUES
(1, 'numCostumes', 0, '2012-12-08 22:00:00'),
(2, 'numTitans', 0, '2012-12-08 22:00:00'),
(3, 'numDemosOut', 0, '2012-12-08 22:00:00');