cherry-picked changes Meta-Generator from engineer-trooper
This commit is contained in:
parent
f7fa124535
commit
2db5aa8693
4 changed files with 44 additions and 1 deletions
|
|
@ -7,6 +7,14 @@ create table if not exists seoData
|
|||
)
|
||||
comment 'seo url mapping';
|
||||
|
||||
create table if not exists metaTagData
|
||||
(
|
||||
id int(255) auto_increment not null unique primary key,
|
||||
content JSON not null,
|
||||
isActive tinyint(1) default 1 null
|
||||
)
|
||||
comment 'Meta Tag File';
|
||||
|
||||
create table if not exists language
|
||||
(
|
||||
id int(255) auto_increment not null unique primary key,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue