You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sripts on db-scripts don't work on branch 4.2.1883 the database too diferent almost found 5 diferent columns that don't exist for example parent_id in menu table.
CREATE TABLE IF NOT EXISTS sakila.menu ( id INT NOT NULL AUTO_INCREMENT , text VARCHAR(45) NOT NULL , iconCls VARCHAR(30) NULL , className VARCHAR(45) NULL , menu_id INT NULL ,
PRIMARY KEY (id) ,
INDEX fk_menu_menu1_idx (menu_id ASC) ,
CONSTRAINT fk_menu_menu1
FOREIGN KEY (menu_id )
REFERENCES sakila.menu (id )
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB;
folder db-scripts is missing from branch 4.2.1883
The text was updated successfully, but these errors were encountered: