Merge "sqlalchemy: Use built-in declarative"

This commit is contained in:
Zuul
2025-09-03 12:49:04 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ Werkzeug>=0.14.1 # BSD License
keystonemiddleware>=4.21.0 # Apache-2.0
stevedore>=1.28.0 # Apache-2.0
voluptuous>=0.11.1 # BSD License
SQLAlchemy>=1.2.5 # MIT
SQLAlchemy>=1.4.0 # MIT
sympy>=1.1.1 # BSD
pysnmp>=7.1.0 # BSD
PyJWT>=1.6.0 # MIT

View File

@@ -19,7 +19,7 @@ from oslo_db.sqlalchemy import models
from sqlalchemy import Column, DateTime, INTEGER, String, \
SmallInteger, BigInteger, Index, Boolean, ForeignKey
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import declarative_base
from sqlalchemy.orm import relationship
import sqlalchemy.types as types