INFRA-3746 | Abhishek | Add migration scripts to add port and language column in diagnostic table

This commit is contained in:
Abhishek Katiyar
2024-12-23 22:07:40 +05:30
parent cb548ab8ee
commit 2d209df309
2 changed files with 4 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
ALTER TABLE diagnostic
ADD COLUMN port integer;

View File

@@ -0,0 +1,2 @@
ALTER TABLE diagnostic
ADD COLUMN language VARCHAR(255) NOT NULL DEFAULT 'Java';