mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix: Change rootPort DB data type (#8404)
* fix: Change rootPort DB data type * Updated schema
This commit is contained in:
committed by
Neil Lathwood
parent
aefc224a0a
commit
26bcf89b76
@@ -1484,7 +1484,7 @@ stp:
|
||||
- { Field: topChanges, Type: mediumint(9), 'Null': false, Extra: '' }
|
||||
- { Field: designatedRoot, Type: varchar(32), 'Null': false, Extra: '' }
|
||||
- { Field: rootCost, Type: mediumint(9), 'Null': false, Extra: '' }
|
||||
- { Field: rootPort, Type: mediumint(9), 'Null': false, Extra: '' }
|
||||
- { Field: rootPort, Type: int(11), 'Null': true, Extra: '' }
|
||||
- { Field: maxAge, Type: mediumint(9), 'Null': false, Extra: '' }
|
||||
- { Field: helloTime, Type: mediumint(9), 'Null': false, Extra: '' }
|
||||
- { Field: holdTime, Type: mediumint(9), 'Null': false, Extra: '' }
|
||||
|
1
sql-schema/246.sql
Normal file
1
sql-schema/246.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `stp` MODIFY `rootPort` int(11);
|
Reference in New Issue
Block a user