Each migration class for table means that it should include all previous schema. But I want only add one column 'new_field', for example. I dont want use morthTable method for searching the changes, I want just execute already prepared changes in new v1.0.N+1 migration.
for example:
public function up()
{
$this->addColumn(
'test_table',
new Column(
'new_field',
array(
'type' => Column::TYPE_INTEGER,
'notNull' => true,
'autoIncrement' => true,
'size' => 11,
'first' => true
)
)