- fix on doctrine mitgration file for cc_country

This commit is contained in:
james 2011-07-13 17:12:35 -04:00
parent d99ee7a147
commit 4be0844b28
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class Version20110713161043 extends AbstractMigration
$cc_country->addColumn('isocode', 'string', array('length' => 3));
$cc_country->addColumn('name', 'string', array('length' => 255));
$cc_country->setPrimaryKey(array('isocod'));
$cc_country->setPrimaryKey(array('isocode'));
//end create cc_country table
}