Switch to new engine facade for Route objects

The Route object is an OVO front for the SubnetRoute model.  Enable the
new Engine Facade code for this object.

Change-Id: I5ce1516d38e59d3254b6f684da1384ffd1cecb50
This commit is contained in:
Nate Johnston 2019-05-30 13:26:13 -04:00
parent c92cbfc02e
commit a9094838a9
1 changed files with 2 additions and 0 deletions

View File

@ -67,6 +67,8 @@ class Route(base.NeutronDbObject):
# Version 1.0: Initial version
VERSION = '1.0'
new_facade = True
db_model = models_v2.SubnetRoute
primary_keys = ['destination', 'nexthop', 'subnet_id']