// Force SQLite schema to create a new table and copy data by adding a not
// field with an initial value.
$this->schema->addField('test_table','new_column',['type'=>'varchar','length'=>20,'not null'=>TRUE,'description'=>'Added new column','initial'=>'test']);
// Test that the columns default values are still correct.