-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwikitour.sql
More file actions
39 lines (32 loc) · 1.06 KB
/
wikitour.sql
File metadata and controls
39 lines (32 loc) · 1.06 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
-- phpMyAdmin SQL Dump
-- version 3.3.7deb7
-- http://www.phpmyadmin.net
--
-- Host: tools.stanford.edu
-- Generation Time: Oct 31, 2012 at 10:41 PM
-- Server version: 5.1.63
-- PHP Version: 5.3.3-7+squeeze14
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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: `c_cs147_sgersten`
--
-- --------------------------------------------------------
--
-- Table structure for table `wikitour`
--
CREATE TABLE IF NOT EXISTS `wikitour` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`fact` varchar(255) NOT NULL,
`source` varchar(255) NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`views` int(11) NOT NULL,
`likes` int(11) NOT NULL,
`lat` double NOT NULL,
`long` double NOT NULL,
`address` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;