Consistent logging of request/responses to solr

Using a middleware. Also add missing changesets for mariadb.
This commit is contained in:
Eike Kettner
2020-06-24 21:25:46 +02:00
parent 47697a8056
commit 532caed84c
9 changed files with 50 additions and 26 deletions

View File

@ -0,0 +1,10 @@
CREATE TABLE `fts_migration` (
`id` varchar(254) not null primary key,
`version` int not null,
`fts_engine` varchar(254) not null,
`description` varchar(254) not null,
`created` timestamp not null
);
CREATE UNIQUE INDEX `fts_migration_version_engine_idx`
ON `fts_migration`(`version`, `fts_engine`);