Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 453 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 453 Bytes

spot

MySQL for creating db and table

CREATE DATABASE conversation;

USE conversation;

CREATE TABLE IF NOT EXISTS location ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, lat decimal(9,6) NOT NULL, lon decimal(9,6) NOT NULL, name varchar(50) DEFAULT NULL, image_path text, caption text, scanned tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=99998770 ;