Development

#2928 (Problem with schema generation with alternative schema syntax)

You must first sign up to be able to contribute.

Ticket #2928 (closed defect: fixed)

Opened 10 months ago

Last modified 10 months ago

Problem with schema generation with alternative schema syntax

Reported by: Vincent Bouzeran Assigned to: francois
Priority: major Milestone:
Component: model Version: 1.1.0 DEV
Keywords: propel, task Cc:
Qualification: Unreviewed

Description

We can't generate models or SQL with alternative schema syntax because of that:

At line 103 of sfPropelBaseTask, we can see this:

$schemaArray = sfYaml::load($schema); if (!isset($schema_arrayclasses?)) {

// Old schema syntax: we convert it $schemaArray = $dbSchema->convertOldToNewYaml($schemaArray);

}

that should be: if (!isset($schemaArrayclasses?))

Change History

02/13/08 17:56:56 changed by francois

  • owner changed from fabien to francois.

02/13/08 17:59:44 changed by francois

  • status changed from new to closed.
  • resolution set to fixed.

(In [7476]) [1.1] fixed typo in sfPropelBaseTask (closes #2928)