24-02-2026, 06:44 PM
vale, esto ya es mas fácil, ahora en SISTEMA->MANTENIMIENTO->Pestaña CONSOLA DB ejecuta estos 2 scripts uno a uno (el primero te dará error, es normal):
drop table salon_elemento;
create table if not exists salon_elemento (id INT NOT NULL AUTO_INCREMENT,id_salon char(2) not null,tipo char(2) not null,izq int(3) default 0,top int(3) default 0,width int(4) default 100, height int(4) default 100, primary key (id)) engine = innodb;
Con esto lo tienes.
drop table salon_elemento;
create table if not exists salon_elemento (id INT NOT NULL AUTO_INCREMENT,id_salon char(2) not null,tipo char(2) not null,izq int(3) default 0,top int(3) default 0,width int(4) default 100, height int(4) default 100, primary key (id)) engine = innodb;
Con esto lo tienes.

