Skip to content

Commit 0390b1b

Browse files
authored
Merge pull request #1198 from itflow-org/develop
Develop to Master
2 parents 30234e0 + 531f3ec commit 0390b1b

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

33
This file documents all notable changes made to ITFlow.
4+
## [25.03.2]
5+
6+
### Fixed
7+
- Revert DB.sql change
48

59
## [25.03.1]
610

db.sql

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ CREATE TABLE `asset_interfaces` (
201201
`interface_ip` varchar(200) DEFAULT NULL,
202202
`interface_nat_ip` varchar(200) DEFAULT NULL,
203203
`interface_ipv6` varchar(200) DEFAULT NULL,
204-
`interface_notes` mediumtext DEFAULT NULL,
204+
`interface_notes` text DEFAULT NULL,
205205
`interface_primary` tinyint(1) DEFAULT 0,
206206
`interface_created_at` datetime NOT NULL DEFAULT current_timestamp(),
207207
`interface_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
@@ -224,7 +224,7 @@ DROP TABLE IF EXISTS `asset_notes`;
224224
CREATE TABLE `asset_notes` (
225225
`asset_note_id` int(11) NOT NULL AUTO_INCREMENT,
226226
`asset_note_type` varchar(200) NOT NULL,
227-
`asset_note` mediumtext DEFAULT NULL,
227+
`asset_note` text DEFAULT NULL,
228228
`asset_note_created_by` int(11) NOT NULL,
229229
`asset_note_created_at` datetime NOT NULL DEFAULT current_timestamp(),
230230
`asset_note_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
@@ -459,7 +459,7 @@ DROP TABLE IF EXISTS `client_notes`;
459459
CREATE TABLE `client_notes` (
460460
`client_note_id` int(11) NOT NULL AUTO_INCREMENT,
461461
`client_note_type` varchar(200) NOT NULL,
462-
`client_note` mediumtext DEFAULT NULL,
462+
`client_note` text DEFAULT NULL,
463463
`client_note_created_by` int(11) NOT NULL,
464464
`client_note_created_at` datetime NOT NULL DEFAULT current_timestamp(),
465465
`client_note_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
@@ -639,7 +639,7 @@ DROP TABLE IF EXISTS `contact_notes`;
639639
CREATE TABLE `contact_notes` (
640640
`contact_note_id` int(11) NOT NULL AUTO_INCREMENT,
641641
`contact_note_type` varchar(200) NOT NULL,
642-
`contact_note` mediumtext DEFAULT NULL,
642+
`contact_note` text DEFAULT NULL,
643643
`contact_note_created_by` int(11) NOT NULL,
644644
`contact_note_created_at` datetime NOT NULL DEFAULT current_timestamp(),
645645
`contact_note_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
@@ -782,7 +782,7 @@ DROP TABLE IF EXISTS `custom_links`;
782782
CREATE TABLE `custom_links` (
783783
`custom_link_id` int(11) NOT NULL AUTO_INCREMENT,
784784
`custom_link_name` varchar(200) NOT NULL,
785-
`custom_link_description` mediumtext DEFAULT NULL,
785+
`custom_link_description` text DEFAULT NULL,
786786
`custom_link_uri` varchar(500) NOT NULL,
787787
`custom_link_new_tab` tinyint(1) NOT NULL DEFAULT 0,
788788
`custom_link_icon` varchar(200) DEFAULT NULL,
@@ -1292,7 +1292,7 @@ DROP TABLE IF EXISTS `project_templates`;
12921292
CREATE TABLE `project_templates` (
12931293
`project_template_id` int(11) NOT NULL AUTO_INCREMENT,
12941294
`project_template_name` varchar(200) NOT NULL,
1295-
`project_template_description` mediumtext DEFAULT NULL,
1295+
`project_template_description` text DEFAULT NULL,
12961296
`project_template_created_at` datetime NOT NULL DEFAULT current_timestamp(),
12971297
`project_template_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
12981298
`project_template_archived_at` datetime DEFAULT NULL,
@@ -1403,14 +1403,14 @@ DROP TABLE IF EXISTS `racks`;
14031403
CREATE TABLE `racks` (
14041404
`rack_id` int(11) NOT NULL AUTO_INCREMENT,
14051405
`rack_name` varchar(200) NOT NULL,
1406-
`rack_description` mediumtext DEFAULT NULL,
1406+
`rack_description` text DEFAULT NULL,
14071407
`rack_model` varchar(200) DEFAULT NULL,
14081408
`rack_depth` varchar(50) DEFAULT NULL,
14091409
`rack_type` varchar(50) DEFAULT NULL,
14101410
`rack_units` int(11) NOT NULL,
14111411
`rack_photo` varchar(200) DEFAULT NULL,
14121412
`rack_physical_location` varchar(200) DEFAULT NULL,
1413-
`rack_notes` mediumtext DEFAULT NULL,
1413+
`rack_notes` text DEFAULT NULL,
14141414
`rack_created_at` datetime NOT NULL DEFAULT current_timestamp(),
14151415
`rack_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
14161416
`rack_archived_at` datetime DEFAULT NULL,
@@ -2175,7 +2175,7 @@ DROP TABLE IF EXISTS `ticket_templates`;
21752175
CREATE TABLE `ticket_templates` (
21762176
`ticket_template_id` int(11) NOT NULL AUTO_INCREMENT,
21772177
`ticket_template_name` varchar(200) NOT NULL,
2178-
`ticket_template_description` mediumtext DEFAULT NULL,
2178+
`ticket_template_description` text DEFAULT NULL,
21792179
`ticket_template_subject` varchar(500) DEFAULT NULL,
21802180
`ticket_template_details` longtext DEFAULT NULL,
21812181
`ticket_template_created_at` datetime NOT NULL DEFAULT current_timestamp(),
@@ -2498,4 +2498,4 @@ CREATE TABLE `vendors` (
24982498
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
24992499
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
25002500

2501-
-- Dump completed on 2025-03-29 17:35:17
2501+
-- Dump completed on 2025-03-29 18:16:21

includes/app_version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* Update this file each time we merge develop into master. Format is YY.MM (add a .v if there is more than one release a month.
66
*/
77

8-
DEFINE("APP_VERSION", "25.03.1");
8+
DEFINE("APP_VERSION", "25.03.2");

0 commit comments

Comments
 (0)