Updated DB schema with the new asset_uri

This commit is contained in:
johnnyq 2023-09-09 23:43:12 -04:00
parent 747e793e54
commit bc1e2f1ea4
1 changed files with 2 additions and 1 deletions

3
db.sql
View File

@ -129,6 +129,7 @@ CREATE TABLE `assets` (
`asset_os` varchar(200) DEFAULT NULL,
`asset_ip` varchar(20) DEFAULT NULL,
`asset_mac` varchar(17) DEFAULT NULL,
`asset_uri` varchar(250) DEFAULT NULL,
`asset_status` varchar(200) DEFAULT NULL,
`asset_purchase_date` date DEFAULT NULL,
`asset_warranty_expire` date DEFAULT NULL,
@ -1697,4 +1698,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-09-05 23:22:42
-- Dump completed on 2023-09-09 23:42:47