- added SEO-URL-Mode
- added Language support
This commit is contained in:
parent
fe7bacd2f6
commit
ccf2f506f0
13 changed files with 201 additions and 7 deletions
18
install/db.sql
Normal file
18
install/db.sql
Normal 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';
|
||||
Loading…
Add table
Add a link
Reference in a new issue