mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-16 19:28:21 +00:00
fix migration, source column NOT NULL constraint on consumer_dlq (#18485)
This commit is contained in:
parent
47ba305b8d
commit
4f5bfa8549
@ -9,7 +9,7 @@ CREATE TABLE IF NOT EXISTS apps_data_store (
|
||||
);
|
||||
|
||||
-- Add the source column to the consumers_dlq table
|
||||
ALTER TABLE consumers_dlq ADD COLUMN source VARCHAR(255) NOT NULL;
|
||||
ALTER TABLE consumers_dlq ADD COLUMN source VARCHAR(255);
|
||||
|
||||
-- Create an index on the source column in the consumers_dlq table
|
||||
CREATE INDEX idx_consumers_dlq_source ON consumers_dlq (source);
|
@ -9,7 +9,7 @@ CREATE TABLE IF NOT EXISTS apps_data_store (
|
||||
);
|
||||
|
||||
-- Add the source column to the consumers_dlq table
|
||||
ALTER TABLE consumers_dlq ADD COLUMN source VARCHAR(255) NOT NULL;
|
||||
ALTER TABLE consumers_dlq ADD COLUMN source VARCHAR(255);
|
||||
|
||||
-- Create an index on the source column in the consumers_dlq table
|
||||
CREATE INDEX idx_consumers_dlq_source ON consumers_dlq (source);
|
Loading…
x
Reference in New Issue
Block a user