@@ -167,11 +167,12 @@ DROP TABLE IF EXISTS `asset_interfaces`;
167
167
CREATE TABLE `asset_interfaces ` (
168
168
` interface_id` int (11 ) NOT NULL AUTO_INCREMENT,
169
169
` interface_name` varchar (200 ) NOT NULL ,
170
+ ` interface_description` varchar (200 ) DEFAULT NULL ,
171
+ ` interface_type` varchar (50 ) DEFAULT NULL ,
170
172
` interface_mac` varchar (200 ) DEFAULT NULL ,
171
173
` interface_ip` varchar (200 ) DEFAULT NULL ,
172
174
` interface_nat_ip` varchar (200 ) DEFAULT NULL ,
173
175
` interface_ipv6` varchar (200 ) DEFAULT NULL ,
174
- ` interface_port` varchar (200 ) DEFAULT NULL ,
175
176
` interface_notes` text DEFAULT NULL ,
176
177
` interface_primary` tinyint (1 ) DEFAULT 0 ,
177
178
` interface_created_at` datetime NOT NULL DEFAULT current_timestamp (),
@@ -1704,9 +1705,6 @@ CREATE TABLE `settings` (
1704
1705
` config_ticket_autoclose_hours` int (5 ) NOT NULL DEFAULT 72 ,
1705
1706
` config_ticket_new_ticket_notification_email` varchar (200 ) DEFAULT NULL ,
1706
1707
` config_ticket_default_billable` tinyint (1 ) NOT NULL DEFAULT 0 ,
1707
- ` config_ticket_default_view` tinyint (1 ) NOT NULL DEFAULT 0 ,
1708
- ` config_ticket_moving_columns` tinyint (1 ) NOT NULL DEFAULT 1 ,
1709
- ` config_ticket_ordering` tinyint (1 ) NOT NULL DEFAULT 0 ,
1710
1708
` config_enable_cron` tinyint (1 ) NOT NULL DEFAULT 0 ,
1711
1709
` config_recurring_auto_send_invoice` tinyint (1 ) NOT NULL DEFAULT 1 ,
1712
1710
` config_enable_alert_domain_expire` tinyint (1 ) NOT NULL DEFAULT 1 ,
@@ -1743,6 +1741,9 @@ CREATE TABLE `settings` (
1743
1741
` config_phone_mask` tinyint (1 ) NOT NULL DEFAULT 1 ,
1744
1742
` config_whitelabel_enabled` int (11 ) NOT NULL DEFAULT 0 ,
1745
1743
` config_whitelabel_key` text DEFAULT NULL ,
1744
+ ` config_ticket_default_view` tinyint (1 ) NOT NULL DEFAULT 0 ,
1745
+ ` config_ticket_ordering` tinyint (1 ) NOT NULL DEFAULT 0 ,
1746
+ ` config_ticket_moving_columns` tinyint (1 ) NOT NULL DEFAULT 1 ,
1746
1747
PRIMARY KEY (` company_id` )
1747
1748
) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_general_ci;
1748
1749
/* !40101 SET character_set_client = @saved_cs_client */ ;
@@ -2347,4 +2348,4 @@ CREATE TABLE `vendors` (
2347
2348
/* !40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */ ;
2348
2349
/* !40111 SET SQL_NOTES=@OLD_SQL_NOTES */ ;
2349
2350
2350
- -- Dump completed on 2025-01-25 21:47:06
2351
+ -- Dump completed on 2025-02-12 17:12:46
0 commit comments