File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ PHP Simple Queue Change Log
44A changelog of all notable changes made to this library.
55
66- * ENH* : Enhance or modify
7- - * FIX* : Fix error or a small change
7+ - * FIX* : Bug fix or a small change
88
99
10101.0.0 under development
@@ -24,10 +24,10 @@ A changelog of all notable changes made to this library.
2424
2525
2626
27- 1.0.0-Alpha-3 ???? ?? , 2021
27+ 1.0.0-Alpha-3 March 31 , 2021
2828---------------------------
2929- * ENH* : [ composer.json] ( ./composer.json ) updating package versions
30- - * ENH* : Implemented abstraction for store ( [ DoctrineDbalStore ] ( ./src/Store/DoctrineDbalStore .php ) )
30+ - * ENH* : Implemented abstraction for ( [ Transport ] ( ./src/Transport/DoctrineDbalTransport .php ) )
3131- * ENH* : Config expanded (job registration and processor registration)
3232- * ENH* : Refactoring class architecture (tests updating)
3333- * ENH* : Improved documentation
Original file line number Diff line number Diff line change @@ -108,8 +108,8 @@ public function send(Message $message): void
108108 $ rowsAffected = $ this ->connection ->insert (DoctrineDbalTableCreator::getTableName (), $ dataMessage , [
109109 'id ' => Types::GUID ,
110110 'status ' => Types::STRING ,
111- 'created_at ' => Types::DATETIME_IMMUTABLE ,
112- 'redelivered_at ' => Types::DATETIME_IMMUTABLE ,
111+ 'created_at ' => Types::STRING ,
112+ 'redelivered_at ' => Types::STRING ,
113113 'attempts ' => Types::SMALLINT ,
114114 'queue ' => Types::STRING ,
115115 'event ' => Types::STRING ,
You can’t perform that action at this time.
0 commit comments