1
0
mirror of synced 2024-12-14 07:06:04 +03:00

Removed debug lines (let's hope I did not forget anything else !)

This commit is contained in:
nicobn 2007-06-25 17:00:43 +00:00
parent a36461c825
commit 83128e79b4

View File

@ -80,12 +80,8 @@ class Doctrine_Import_Xml
// Go through all tables... // Go through all tables...
foreach ($xmlObj->table as $table) { foreach ($xmlObj->table as $table) {
print 'table: '. $table->name . "\n";
// Go through all columns... // Go through all columns...
foreach ($table->declaration->field as $field) { foreach ($table->declaration->field as $field) {
print ' field: '. $field->name . "\n";
$colDesc = array( $colDesc = array(
'name' => (string) $field->name, 'name' => (string) $field->name,
'type' => (string) $field->type, 'type' => (string) $field->type,