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.

Related-Bug: #1831919
Change-Id: I5ce1516d38e59d3254b6f684da1384ffd1cecb50
(cherry picked from commit a9094838a9)
This commit is contained in:
Nate Johnston 2019-05-30 13:26:13 -04:00
parent 12d84bc479
commit 8ed443ca66
1 changed files with 2 additions and 0 deletions

View File

@ -62,6 +62,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']