Skip to content

Commit

Permalink
Update ORM CU: Name -> HostName
Browse files Browse the repository at this point in the history
  • Loading branch information
Manager committed Oct 30, 2023
1 parent 3ef1495 commit 5b2d59c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/drv_db/src/wattrex_driver_db/drv_db_dao_master.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class DrvDbComputationalUnitC(Base):
__tablename__ = 'ComputationalUnit'

CUID = Column(MEDIUMINT(unsigned=True), primary_key=True)
Name = Column(String(50), nullable=False)
HostName = Column(String(50), nullable=False)
IP = Column(String(20), nullable=False)
Port = Column(SMALLINT(unsigned=True), nullable=False)
User = Column(String(30), nullable=False)
Expand Down

0 comments on commit 5b2d59c

Please sign in to comment.