From bc1e2f1ea4c5a2f712afdfd7c8dd4fcf4f14c75f Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 9 Sep 2023 23:43:12 -0400 Subject: [PATCH] Updated DB schema with the new asset_uri --- db.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db.sql b/db.sql index db71d679..b13369b6 100644 --- a/db.sql +++ b/db.sql @@ -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