mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
fix migration, source column NOT NULL constraint on consumer_dlq (#18485)
This commit is contained in:
parent
47ba305b8d
commit
4f5bfa8549
2 changed files with 2 additions and 2 deletions
|
|
@ -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…
Reference in a new issue