cherry-picked changes Meta-Generator from engineer-trooper

This commit is contained in:
Maurice Grönwoldt 2020-09-25 21:39:05 +02:00
commit 2db5aa8693
4 changed files with 44 additions and 1 deletions

View file

@ -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,