-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: save mapping to matched request instead of page
- Loading branch information
1 parent
62f440b
commit b373fcf
Showing
6 changed files
with
59 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
create table tx_xmgoaccess_domain_model_mapping ( | ||
path varchar(255) not null default '', | ||
path varchar(255) not null default '', | ||
record_type int(11) unsigned default '0' not null, | ||
page int(11) unsigned default '0' not null, | ||
regex tinyint(4) unsigned default '0' not null, | ||
title varchar(255) not null default '', | ||
page int(11) unsigned default '0' not null, | ||
regex tinyint(4) unsigned default '0' not null, | ||
title varchar(255) not null default '', | ||
); | ||
|
||
create table tx_xmgoaccess_domain_model_request ( | ||
date int(11) unsigned default 0 not null, | ||
page int(11) unsigned default 0 not null, | ||
hits int(11) unsigned default 0 not null, | ||
date int(11) unsigned default 0 not null, | ||
mapping int(11) unsigned default 0 not null, | ||
hits int(11) unsigned default 0 not null, | ||
visitors int(11) unsigned default 0 not null, | ||
); |