-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrobot.sql
47 lines (35 loc) · 991 Bytes
/
robot.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
38
39
40
41
42
43
44
45
46
#
# Database structure for database 'robot'
#
DROP DATABASE IF EXISTS "robot";
CREATE DATABASE "robot" /*!40100 DEFAULT CHARACTER SET latin1 */;
USE "robot";
#
# Table structure for table 'eventos'
#
CREATE TABLE "eventos" (
"id" int(11) NOT NULL auto_increment,
"title" tinytext,
"subtitle" tinytext,
"description" text,
"puntosventa" tinytext,
"ventalink" tinytext,
"bandadetailurl" tinytext,
"detailsurl" tinytext,
"image" tinytext,
"clasification" tinytext,
"price" tinytext,
"location" int(11) default NULL,
"startDate" datetime NOT NULL default '0000-00-00 00:00:00',
"endDate" datetime NOT NULL default '0000-00-00 00:00:00',
"created" timestamp NOT NULL default CURRENT_TIMESTAMP,
PRIMARY KEY ("id")
) AUTO_INCREMENT=25;
#
# Table structure for table 'location'
#
CREATE TABLE "location" (
"id" int(11) NOT NULL auto_increment,
"title" tinytext,
PRIMARY KEY ("id")
) AUTO_INCREMENT=9;