diff --git a/pkg/enrichment/migrations/006_type_from_varchar_to_text.down.sql b/pkg/enrichment/migrations/006_type_from_varchar_to_text.down.sql new file mode 100644 index 000000000..f38ad58f8 --- /dev/null +++ b/pkg/enrichment/migrations/006_type_from_varchar_to_text.down.sql @@ -0,0 +1 @@ +ALTER TABLE issues ALTER COLUMN "type" TYPE VARCHAR(128); diff --git a/pkg/enrichment/migrations/006_type_from_varchar_to_text.up.sql b/pkg/enrichment/migrations/006_type_from_varchar_to_text.up.sql new file mode 100644 index 000000000..ea69d4222 --- /dev/null +++ b/pkg/enrichment/migrations/006_type_from_varchar_to_text.up.sql @@ -0,0 +1 @@ +ALTER TABLE issues ALTER COLUMN "type" TYPE text;