- added SEO-URL-Mode

- added Language support
This commit is contained in:
Maurice Grönwoldt 2020-07-24 11:08:07 +02:00
commit ccf2f506f0
13 changed files with 201 additions and 7 deletions

18
install/db.sql Normal file
View file

@ -0,0 +1,18 @@
create table if not exists seoData
(
id int(255) auto_increment not null unique primary key,
seo varchar(255) not null,
raw varchar(255) not null,
isActive tinyint(1) default 1 null
)
comment 'seo url mapping';
create table if not exists language
(
id int(255) auto_increment not null unique primary key,
language varchar(255) not null,
shortTag varchar(255) not null,
isActive tinyint(1) default 1 null,
isDefault tinyint(1) default 0 null
)
comment 'Language File';