mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-10 22:18:40 +00:00
fix compress type
This commit is contained in:
parent
8a8ee4ed90
commit
772453e753
|
|
@ -50,7 +50,7 @@ final class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase
|
||||||
'CREATE TABLE `test_base` (
|
'CREATE TABLE `test_base` (
|
||||||
`test_base_id` int(11) NOT NULL AUTO_INCREMENT,
|
`test_base_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`test_base_string` varchar(254) NOT NULL,
|
`test_base_string` varchar(254) NOT NULL,
|
||||||
`test_base_compress` varchar(254) NOT NULL,
|
`test_base_compress` BLOB NOT NULL,
|
||||||
`test_base_pstring` varchar(254) NOT NULL,
|
`test_base_pstring` varchar(254) NOT NULL,
|
||||||
`test_base_int` int(11) NOT NULL,
|
`test_base_int` int(11) NOT NULL,
|
||||||
`test_base_bool` tinyint(1) DEFAULT NULL,
|
`test_base_bool` tinyint(1) DEFAULT NULL,
|
||||||
|
|
@ -180,6 +180,8 @@ final class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase
|
||||||
$GLOBALS['dbpool']->get()->con->prepare('DROP TABLE test_has_many_rel_relationsp')->execute();
|
$GLOBALS['dbpool']->get()->con->prepare('DROP TABLE test_has_many_rel_relationsp')->execute();
|
||||||
$GLOBALS['dbpool']->get()->con->prepare('DROP TABLE test_belongs_to_onep')->execute();
|
$GLOBALS['dbpool']->get()->con->prepare('DROP TABLE test_belongs_to_onep')->execute();
|
||||||
$GLOBALS['dbpool']->get()->con->prepare('DROP TABLE test_owns_onep')->execute();
|
$GLOBALS['dbpool']->get()->con->prepare('DROP TABLE test_owns_onep')->execute();
|
||||||
|
|
||||||
|
\phpOMS\Log\FileLogger::getInstance()->verbose = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user