VENOM-1 : added metaTagData to SQL-Database; testing with @Maurice Grönwoldt; Test successful
This commit is contained in:
parent
e3a0c6442c
commit
72e716dc03
2 changed files with 12 additions and 8 deletions
|
@ -7,6 +7,14 @@ create table if not exists seoData
|
||||||
)
|
)
|
||||||
comment 'seo url mapping';
|
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
|
create table if not exists language
|
||||||
(
|
(
|
||||||
id int(255) auto_increment not null unique primary key,
|
id int(255) auto_increment not null unique primary key,
|
||||||
|
@ -26,10 +34,4 @@ create table if not exists data
|
||||||
raw longtext not null,
|
raw longtext not null,
|
||||||
datatype enum ('content', 'form')
|
datatype enum ('content', 'form')
|
||||||
)
|
)
|
||||||
comment 'DataLoader File';
|
comment 'DataLoader File';
|
||||||
|
|
||||||
create table if not exists meteData
|
|
||||||
(
|
|
||||||
id int(255) auto_increment not null unique primary key
|
|
||||||
)
|
|
||||||
comment 'Test'
|
|
|
@ -10,5 +10,7 @@ namespace Venom\Helper;
|
||||||
*/
|
*/
|
||||||
class MetaGenerator
|
class MetaGenerator
|
||||||
{
|
{
|
||||||
|
//config erweitern, dass die Klasse ausgeschaltet werden kann
|
||||||
|
//ArgumentHandler muss die SEO-Urls mit der ID von der metaData gefüttert werden
|
||||||
|
//
|
||||||
}
|
}
|
Loading…
Reference in a new issue