[commits] Horde branch db-migrations updated.

Chuck Hagenbuch chuck at horde.org
Mon Feb 16 21:33:26 UTC 2009


The branch db-migrations has been updated.
The following is a summary of the commits. Further details on each commit
can be found below.

from: 2a72e18f7fba87323b8c5062b757c700474ca42e

dcad7e0... first pass on migration tests
2e53052... tests are ported, now need to fix things

-----------------------------------------------------------------------
commit dcad7e02f5dca586fb2e727e19f27b15c969afa1
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Mon Feb 16 15:35:23 2009 -0500

    first pass on migration tests

 framework/Db/test/Horde/Db/AllTests.php            |   20 ++++++++++++++------
 framework/Db/test/Horde/Db/Migration/BaseTest.php  |   13 +++++++++----
 .../migrations/1_users_have_last_names1.php        |    2 +-
 .../fixtures/migrations/2_we_need_reminders1.php   |    2 +-
 .../fixtures/migrations/3_innocent_jointable1.php  |    2 +-
 .../1_give_me_big_numbers.php                      |    2 +-
 .../1_users_have_last_names2.php                   |    2 +-
 .../2_we_need_reminders2.php                       |    2 +-
 .../fixtures/migrations_with_duplicate/3_foo.php   |    4 ++--
 .../3_innocent_jointable2.php                      |    2 +-
 .../1000_users_have_middle_names.php               |    2 +-
 .../1_users_have_last_names3.php                   |    2 +-
 12 files changed, 34 insertions(+), 21 deletions(-)

http://git.horde.org/diff.php/framework/Db/test/Horde/Db/AllTests.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Migration/BaseTest.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations/1_users_have_last_names1.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations/2_we_need_reminders1.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations/3_innocent_jointable1.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_decimal/1_give_me_big_numbers.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/1_users_have_last_names2.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/2_we_need_reminders2.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_foo.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_duplicate/3_innocent_jointable2.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1000_users_have_middle_names.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/fixtures/migrations_with_missing_versions/1_users_have_last_names3.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=dcad7e02f5dca586fb2e727e19f27b15c969afa1

-----------------------------------------------------------------------
commit 2e5305216fa36f7839a7bc6dac2092c19d6dd250
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Mon Feb 16 16:33:17 2009 -0500

    tests are ported, now need to fix things

 framework/Db/lib/Horde/Db/Migration/Migrator.php   |    4 +-
 framework/Db/test/Horde/Db/Migration/BaseTest.php  |  190 +++++++++++---------
 .../Db/test/Horde/Db/Migration/MigratorTest.php    |  133 ++++++--------
 3 files changed, 169 insertions(+), 158 deletions(-)

http://git.horde.org/diff.php/framework/Db/lib/Horde/Db/Migration/Migrator.php?rt=horde-git&r1=1935513c6de207fe122c4665fc41e66547e666ee&r2=2e5305216fa36f7839a7bc6dac2092c19d6dd250
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Migration/BaseTest.php?rt=horde-git&r1=dcad7e02f5dca586fb2e727e19f27b15c969afa1&r2=2e5305216fa36f7839a7bc6dac2092c19d6dd250
http://git.horde.org/diff.php/framework/Db/test/Horde/Db/Migration/MigratorTest.php?rt=horde-git&r1=2a72e18f7fba87323b8c5062b757c700474ca42e&r2=2e5305216fa36f7839a7bc6dac2092c19d6dd250




More information about the commits mailing list