Skip to content

Releases: malteriesch/test-db-acle

mode:delete introduction

22 Jan 13:34
Compare
Choose a tag to compare

default table clearing is truncate, introduced mode:delete for a 'soft delete' that does not interfere with wrapping in transactions

Mysql PSV auto increment shorthand

22 Aug 09:42
Compare
Choose a tag to compare

auto increment in mysql psv :
example:
[user|auto-increment:123]

This does not work yet for sqllite

Removed support for PHP <7 and added support for unique mysql varchar columns

09 Apr 09:24
Compare
Choose a tag to compare

Removed Support for PHP 5.3

16 Aug 16:34
Compare
Choose a tag to compare
1.0.0

Removed support for PHP 5.3

Bug fix : new placeholder were overwritten

16 Aug 16:20
Compare
Choose a tag to compare
0.9.4

#13 new placeholders are overwritten with older versions if the key h…

0.9.3

22 Aug 17:00
Compare
Choose a tag to compare

It was not possible to have different setups with the same table in the same PSV, it can be useful sometimes to help split things up:

[address]
address_id |company
10 |foo1

[address|mode:append]
address_id |company
20 |foo2

Letting database handle defaults

11 Aug 09:32
Compare
Choose a tag to compare

Test-db-acle handled defaults by adding them to the list of non-nullable columns, but this broke with special default values like CURRENT_TIMESTAMP. This is now handled purely by the database.

0.9.1

13 Mar 12:29
Compare
Choose a tag to compare

#11 and #12 fixed

issue #10 fixed

06 Jun 14:32
Compare
Choose a tag to compare
0.9.0

fixed issue #10

Minor Release - upgraded PHPUnit and made MockablePdo compatible

06 Jun 13:56
Compare
Choose a tag to compare
0.8.3

pushing up PHPUnit version and dealing with deprecated getMock