Changeset 4292
- Timestamp:
- 04/25/08 16:11:00 (15 months ago)
- Files:
-
- 1 modified
-
branches/0.11/tests/Ticket/950TestCase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/tests/Ticket/950TestCase.php
r4291 r4292 80 80 'autoincrement' => true)); 81 81 82 $this->hasColumn('iso', 'string', 2, array('notnull' => true)); // <--------------------------82 $this->hasColumn('iso', 'string', 2, array('notnull' => true)); 83 83 84 84 $this->hasColumn('name', 'string', 80); … … 86 86 $this->hasColumn('iso3', 'string', 3); 87 87 $this->hasColumn('numcode', 'integer', 10); 88 $this->index('iso', array('fields' => 'iso')); // <- need this else I get the error.89 88 } 90 89 }