14/12/2004, 14:43
|
| | | Fecha de Ingreso: febrero-2003 Ubicación: Argentina, Rosario
Mensajes: 585
Antigüedad: 21 años, 10 meses Puntos: 0 | |
#
# Table structure for table 'neo_cartelera'
#
CREATE TABLE `neo_cartelera` (
`idcartelera` int(11) NOT NULL auto_increment,
`idcine` int(11) NOT NULL default '1',
`idpelicula` int(11) NOT NULL default '1',
`horarios` tinytext NOT NULL,
`precios` tinytext NOT NULL,
PRIMARY KEY (`idcartelera`),
UNIQUE KEY `idcartelera` (`idcartelera`),
KEY `idcartelera_2` (`idcartelera`)
) TYPE=MyISAM;
#
# Table structure for table 'neo_cines'
#
CREATE TABLE `neo_cines` (
`idcine` int(11) NOT NULL auto_increment,
`nombre` tinytext NOT NULL,
`direccion` tinytext NOT NULL,
`telefono` tinytext NOT NULL,
PRIMARY KEY (`idcine`),
UNIQUE KEY `idcine` (`idcine`),
KEY `idcine_2` (`idcine`)
) TYPE=MyISAM;
#
# Table structure for table 'neo_peliculas'
#
CREATE TABLE `neo_peliculas` (
`idpelicula` int(11) NOT NULL auto_increment,
`pelicula` tinytext NOT NULL,
`director` tinytext NOT NULL,
`protagonistas` tinytext NOT NULL,
`genero` tinytext NOT NULL,
`calificacion` tinytext NOT NULL,
`idioma` tinytext NOT NULL,
`duracion` tinytext NOT NULL,
`sinopsis` tinytext NOT NULL,
`foto` tinytext NOT NULL,
`encartel` int(1) NOT NULL default '1',
`recomendada` int(1) NOT NULL default '0',
PRIMARY KEY (`idpelicula`),
UNIQUE KEY `idpelicula` (`idpelicula`),
KEY `idpelicula_2` (`idpelicula`)
) TYPE=MyISAM;
__________________ Ignacio |