Avoiding duplicates with factory_boy factories

I'm using factory_boy to create test fixtures. I've got two simple factories, backed by SQLAlchemy models (simplified below). I'd like to be able to call AddressFactory.create() multiple times, an...