-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdakoo_twcl.sql
More file actions
95 lines (78 loc) · 3.01 KB
/
dakoo_twcl.sql
File metadata and controls
95 lines (78 loc) · 3.01 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
-- phpMyAdmin SQL Dump
-- version 3.4.7.1
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tiempo de generación: 03-06-2012 a las 16:36:51
-- Versión del servidor: 5.0.92
-- Versión de PHP: 5.2.9
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 */;
--
-- Base de datos: `dakoo_twcl`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `ciudades`
--
CREATE TABLE IF NOT EXISTS `ciudades` (
`id` int(11) NOT NULL auto_increment,
`slug` varchar(150) character set latin1 NOT NULL default '',
`name` text character set latin1 NOT NULL,
`lat` varchar(100) character set latin1 NOT NULL default '',
`lon` varchar(100) character set latin1 NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci AUTO_INCREMENT=324 ;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `conectores`
--
CREATE TABLE IF NOT EXISTS `conectores` (
`id` int(11) NOT NULL auto_increment,
`from_user_id` int(20) NOT NULL default '0',
`followers` text NOT NULL,
`friends` text NOT NULL,
`total_followers` int(11) NOT NULL default '0',
`total_friends` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`,`from_user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4676 ;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `pendientes`
--
CREATE TABLE IF NOT EXISTS `pendientes` (
`id` int(11) NOT NULL auto_increment,
`from_user_id` int(20) NOT NULL default '0',
`ciudad` varchar(200) NOT NULL default '',
`pais` varchar(100) NOT NULL default '',
`profile_image_url` varchar(250) NOT NULL default '',
`from_user` varchar(100) NOT NULL default '',
`location` varchar(250) NOT NULL default '',
`fecha_ingreso` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=240 ;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL auto_increment,
`from_user_id` int(20) NOT NULL default '0',
`ciudad` varchar(100) NOT NULL default '',
`pais` varchar(100) NOT NULL default '',
`profile_image_url` varchar(250) NOT NULL default '',
`from_user` varchar(100) NOT NULL default '',
`location` varchar(250) NOT NULL default '',
`fecha_ingreso` datetime NOT NULL,
`incluence` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `from_user` (`from_user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=98177 ;
/*!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 */;