mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix db schema oopsie (#9586)
This commit is contained in:
@@ -1244,7 +1244,7 @@ ports_nac:
|
||||
Columns:
|
||||
- { Field: ports_nac_id, Type: 'int(10) unsigned', 'Null': false, Extra: auto_increment }
|
||||
- { Field: auth_id, Type: varchar(50), 'Null': false, Extra: '' }
|
||||
- { Field: device_id, Type: 'int(11) unsigned', 'Null': false, Extra: '' }
|
||||
- { Field: device_id, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
|
||||
- { Field: port_id, Type: int(11), 'Null': false, Extra: '' }
|
||||
- { Field: domain, Type: varchar(50), 'Null': false, Extra: '' }
|
||||
- { Field: username, Type: varchar(50), 'Null': false, Extra: '' }
|
||||
|
2
sql-schema/275.sql
Normal file
2
sql-schema/275.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE `ports_nac` CHANGE `device_id` `device_id` int(10) unsigned NOT NULL ;
|
||||
|
Reference in New Issue
Block a user