Commit 83128e79 authored by nicobn's avatar nicobn

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

parent a36461c8
...@@ -80,12 +80,8 @@ class Doctrine_Import_Xml ...@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment