TableFactory()
init now expects an optionalsa.Metadata()
objecttf = TableFactory(metadata=sa.Metadata())
. If not passed, it will create a metadata automatically which you can access viatf.metadata
.- No longer need to call the factory with
sa.Metadata()
object. i.e.tf("tablename", metadata)
should now betf("tablename")
.