Inheritance: extends LazyRecord\Schema
 public function testImportSchema()
 {
     $schema = new AddressSchema();
     $this->dropSchemaTables([$schema]);
     $table = $schema->getTable();
     AutomaticMigration::options($options = new OptionCollection());
     $migrate = new AutomaticMigration($this->conn, $this->queryDriver, $this->logger, OptionResult::create($options, []));
     $migrate->upgrade([$schema]);
 }