Base de datos
CREATE KEYSPACE ligadb
WITH replication = {'class':'SimpleStrategy','replication_factor':1};
USE ligadb;
CREATE TABLE "torneo" (
idTorneo text,
nombreTorneo text,
cantidadEquipos int,
activarTorneo int,
costoInscripcion double,
numJugPorEquipo int,
numVueltas int,
refuerzos int,
PRIMARY KEY(idTorneo)
);
CREATE TABLE "usuarioadmin" (
nombre text,
apellidoPaterno text,
apellidoMaterno text,
email text,
password text,
PRIMARY KEY(email)
);
CREATE TABLE "equipo" (
idTorneo text,
idEquipo text,
nombreEquipo text,
delegado text,
campo text,
email text,
password text,
telefono text,
idStatus int,
PRIMARY KEY(idTorneo,idEquipo)
);
insert into usuarioadmin (nombre,apellidoPaterno,apellidoMaterno,email,password) values('Jose Martin','Lara',
'Lopez','kapo1978@hotmail.com','adminazteca');