25-09-2018, 10:04 PM
Entra en SISTEMA->MANTENIMIENTO->Pestaña CONSOLA DB y ejecuta uno a uno estos scripts: (copia una linea, ejecuta, borra, copia otra, ejecuta, borra ....etc)
drop table venta_preticket;
drop table venta_cocina;
drop table venta_ticket;
create table venta_preticket (id_venta int(7) not null, primary key (id_venta)) type=innodb;
create table venta_cocina (id_venta int(7) not null, primary key (id_venta)) type=innodb;
alter table venta_cocina add id_caja int(2);
create table venta_ticket (id_venta int(7) not null, primary key (id_venta)) type=innodb;
drop table venta_preticket;
drop table venta_cocina;
drop table venta_ticket;
create table venta_preticket (id_venta int(7) not null, primary key (id_venta)) type=innodb;
create table venta_cocina (id_venta int(7) not null, primary key (id_venta)) type=innodb;
alter table venta_cocina add id_caja int(2);
create table venta_ticket (id_venta int(7) not null, primary key (id_venta)) type=innodb;