Development

Changeset 11270

You must first sign up to be able to contribute.

Changeset 11270

Show
Ignore:
Timestamp:
09/01/08 01:46:58 (5 years ago)
Author:
Kris.Wallsmith
Message:

sfPropelPlugin [migration]: Removed DDL builder class from propel.ini to avoid an unnecessary upgrade step, fixed unit test broken in r11268.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfPropelPlugin/branches/migration/config/propel.ini.example

    r11243 r11270  
    4949propel.builder.objectmultiextend.class = plugins.sfPropelPlugin.lib.propel.builder.SfMultiExtendObjectBuilder 
    5050propel.builder.mapbuilder.class        = plugins.sfPropelPlugin.lib.propel.builder.SfMapBuilderBuilder 
    51 propel.builder.ddl.class               = plugins.sfPropelPlugin.lib.propel.builder.sql.Sf${propel.database}DDLBuilder 
    5251 
    5352propel.builder.addIncludes  = false 
  • plugins/sfPropelPlugin/branches/migration/test/functional/fixtures/config/propel.ini

    r11243 r11270  
    3333propel.builder.nestedset.class         = plugins.sfPropelPlugin.lib.propel.builder.SfNestedSetBuilder 
    3434propel.builder.nestedsetpeer.class     = plugins.sfPropelPlugin.lib.propel.builder.SfNestedSetPeerBuilder 
    35 propel.builder.ddl.class               = plugins.sfPropelPlugin.lib.propel.builder.sql.Sf${propel.database}DDLBuilder 
    3635 
    3736propel.builder.interface.class         = propel.engine.builder.om.php5.PHP5InterfaceBuilder 
  • plugins/sfPropelPlugin/branches/migration/test/unit/migration/fixtures.yml

    r11264 r11270  
    181181      create: ALTER TABLE [book] ADD COLUMN [name] VARCHAR(255)  NOT NULL; 
    182182      drop: | 
    183         BEGIN TRANSACTION; 
    184183        CREATE TEMPORARY TABLE [book_backup] ([name]); 
    185184        INSERT INTO [book_backup] SELECT [name] FROM [book]; 
     
    188187        INSERT INTO [book] SELECT [name] FROM [book_backup]; 
    189188        DROP TABLE [book_backup]; 
    190         COMMIT; 
    191189    table: 
    192190      create: |