Directory SubSonic.Tests/Migrations/

Directory Created:
2008-03-18 22:13
Directory Deleted:
2009-07-01 23:17
Total Files:
0
Deleted Files:
1
Lines of Code:
0

[root]/SubSonic.Tests/Migrations
            Folder removed from repo MigrationFiles (0 files, 0 lines)

Lines of Code

SubSonic.Tests/Migrations/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 23 (100.0%) 700 (100.0%) 30.4
shawn.oster 11 (47.8%) 402 (57.4%) 36.5
canofunk 3 (13.0%) 149 (21.3%) 49.6
robconery@gmail.com 6 (26.1%) 118 (16.9%) 19.6
developingchris 1 (4.3%) 29 (4.1%) 29.0
shawn.oster@gmail.com 1 (4.3%) 2 (0.3%) 2.0
robconery 1 (4.3%) 0 (0.0%) 0.0

Most Recent Commits

robconery@gmail.com 2009-07-01 23:17 Rev.: 525

moving 2.x source to 2.0 folder

0 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (del)
robconery@gmail.com 2009-04-10 21:37 Rev.: 516

FIXED: Bug with GetRecordCount() failing on formatting
FIXED: Some Unit Tests were written rather lamely :) by me

3 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+3)
robconery@gmail.com 2009-04-07 23:12 Rev.: 494

FIXED: Google Issue 18 - dual foreign key columns resulted in a constraint with same name

27 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+27)
robconery@gmail.com 2009-04-07 22:37 Rev.: 492

FIXED: Codeplex 17617 - Added patch for Distinct Query values - thanks to GeoffAtDataGaard
FIXED: Patch applied from Jason Kealey for composite Primary Keys (Google issue 3)
FIXED: Patch applied from boyank for Scaffolding and composite keys (Google issue 9)
FIXED: Google issue 12 (Migration column/numberscale for decimals) - thanks to robbam
FIXED: Google issue 14 (Migration max length for char/non-int PKs) - thanks to robbam

ADDED: Initial rev of ActiveRecord T4 templates
REMOVED: Substage project - will added as "extra"
REMOVED: SubSonicCentral web site. Will add as "extra"

38 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+38)
developingchris 2008-09-26 00:44 Rev.: 486

Added /version -1 support in migrations, added 2 tests to test using -1 to go down 1 version and when at 0 it doesn't try and go further

29 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+29 -1)
canofunk 2008-07-01 14:32 Rev.: 469

CHANGED: Global code clean up and reformatting
CHANGED: Updated System.Data.SQLite.DLL to 1.0.51.0

95 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+95 -75)
canofunk 2008-06-06 08:54 Rev.: 453

CHANGED: Commented out some Migration Unit Tests that were resulting in build failures.

38 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+38 -35)
robconery@gmail.com 2008-06-05 23:01 Rev.: 452

Cleaned up and commented migration bits - good to go.

2 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+2 -2)
robconery@gmail.com 2008-06-05 17:36 Rev.: 449

Spruced up Migrations:
FIXED: namespacing regex bug with Migration::CodeRunner that resulted in bad instancing
ADDED: GetTable methods to Migration class
ADDED: Ability to create/drop foreign keys for SQL Server (not MySQL yet)
ADDED: override to TableSchema.Table AddColumn which accepts only a string column name, defaulting to nvarchar(64)

48 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+48)
shawn.oster@gmail.com 2008-04-26 20:58 Rev.: 426

CHANGED: New BuildXXX() statements in SQL generators are now qualifying table and column names.
ADDED: New property DelimitedName to TableColumn when just the delimited form of a column is needed vs. fully qualified.

2 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+2 -2)
shawn.oster 2008-04-18 21:37 Rev.: 418

ADDED: MySqlGenerator class.
ADDED: Tests to support MySqlGenerator.
CHANGED: Cleaned up migration test names.
CHANGED: Renamed SqlServerParserTests.cs to SqlServerGeneratorTests.cs to better reflect actual usage.
CHANGED: Changed some methods in ANSISqlGenerator to virtual to allow descendant classes to do their thing.
ADDED: DataService.GetGenerator() overload to accept a Provider for performance.

2 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+2 -2)
shawn.oster 2008-04-18 01:50 Rev.: 417

CHANGED: Correctly implemented IDisposable in Migration (thanks FxCop).
ADDED: Test to make sure MySql generator works with migrations (it doesn't yet).

28 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+28 -6)
shawn.oster 2008-04-15 01:07 Rev.: 413

ADDED: Execute() method to Migrations to support ad-hoc SQL and supporting test.
ADDED: Support for Migrate-On-Dispose, Rob-style, and supporting test.

34 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+34)
shawn.oster 2008-04-04 19:00 Rev.: 405

Added: migrate command to SubCommander command-line help output.
Fixed: When running migrations SubSonic.dll wasn't correctly referenced in dynamic compiled code. Needed the full path.
Fixed: Getting relative migration directory in tests failed under different test runners.

32 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+32 -24)
shawn.oster 2008-04-04 15:29 Rev.: 404

Added: Migration test directory is now dynamically determined during tests vs. being hard coded.

20 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+20 -13)
shawn.oster 2008-04-04 15:03 Rev.: 403

Changed: Tightened up migration error handling and console output.
Changed: SqlServerParserTests to use Assert.AreEqual vs. Assert.IsTrue when comparing strings.
Fixed: DropColumn generation wasn't accounting for dropping defaults.

30 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+30 -2)
shawn.oster 2008-04-02 03:57 Rev.: 398

Fixed: Migrator now correctly calls the Migrate() method vs. Up() or Down();
Fixed: Migrator was instancing a CSharp CodeDOM for .cs files.
Added: GetGenerator() method to DataService, may move.

23 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+23 -19)
shawn.oster 2008-04-01 21:25 Rev.: 397

Changed: Updated migration tests so all now pass.
Added: AlterColumn support to migrations.
Added: Tests to support AlterColumn.
Fixed: Minor bug in TableSchema.AddPrimaryKeyColumn that appended "Id" to end of column name twice.

45 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+45 -4)
shawn.oster 2008-04-01 20:25 Rev.: 396

Added: AddColumn & RemoveColumn migrations.
Added: Tests to support AddColumn & RemoveColumn migrations.

38 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+38 -1)
shawn.oster 2008-04-01 19:08 Rev.: 395

Changed: Moved MigrationDirection enum from Migrator to Migration.
Added: More migration tests.
Added: Migration CreateTable adds a PrimaryKey when creating if missing.
Removed: Unused migration support code.

99 lines of code changed in 1 file:

  • SubSonic.Tests/Migrations: MigrationTests.cs (+99 -36)

(3 more)

Generated by StatSVN 0.4.1