From 7283dab7c262fac4d5b85dc7e44b08079581dc77 Mon Sep 17 00:00:00 2001 From: AkshayaFoiger Date: Fri, 7 Feb 2025 00:11:22 +0530 Subject: [PATCH] fix migration error --- .../2025-02-06-072648_add_always_request_overcapture/down.sql | 1 - .../2025-02-06-072648_add_always_request_overcapture/up.sql | 1 - .../down.sql | 3 --- .../up.sql | 3 --- .../down.sql | 1 - .../up.sql | 1 - 6 files changed, 10 deletions(-) delete mode 100644 migrations/2025-02-06-072648_add_always_request_overcapture/down.sql delete mode 100644 migrations/2025-02-06-072648_add_always_request_overcapture/up.sql delete mode 100644 migrations/2025-02-06-123457_add_overcapture_fields_to_payment_attempt/down.sql delete mode 100644 migrations/2025-02-06-123457_add_overcapture_fields_to_payment_attempt/up.sql delete mode 100644 migrations/2025-02-06-83746_add_request_overcapture_to_payment_intent/down.sql delete mode 100644 migrations/2025-02-06-83746_add_request_overcapture_to_payment_intent/up.sql diff --git a/migrations/2025-02-06-072648_add_always_request_overcapture/down.sql b/migrations/2025-02-06-072648_add_always_request_overcapture/down.sql deleted file mode 100644 index 1aae471f86f..00000000000 --- a/migrations/2025-02-06-072648_add_always_request_overcapture/down.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE business_profile DROP COLUMN IF EXISTS always_request_overcapture; \ No newline at end of file diff --git a/migrations/2025-02-06-072648_add_always_request_overcapture/up.sql b/migrations/2025-02-06-072648_add_always_request_overcapture/up.sql deleted file mode 100644 index e8c17d89b52..00000000000 --- a/migrations/2025-02-06-072648_add_always_request_overcapture/up.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE business_profile ADD COLUMN IF NOT EXISTS always_request_overcapture BOOLEAN DEFAULT NULL; \ No newline at end of file diff --git a/migrations/2025-02-06-123457_add_overcapture_fields_to_payment_attempt/down.sql b/migrations/2025-02-06-123457_add_overcapture_fields_to_payment_attempt/down.sql deleted file mode 100644 index eebd7df7daf..00000000000 --- a/migrations/2025-02-06-123457_add_overcapture_fields_to_payment_attempt/down.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE payment_attempt -DROP COLUMN IF EXISTS request_overcapture, -DROP COLUMN IF EXISTS overcapture_status; diff --git a/migrations/2025-02-06-123457_add_overcapture_fields_to_payment_attempt/up.sql b/migrations/2025-02-06-123457_add_overcapture_fields_to_payment_attempt/up.sql deleted file mode 100644 index 322d4c816a4..00000000000 --- a/migrations/2025-02-06-123457_add_overcapture_fields_to_payment_attempt/up.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE payment_attempt -ADD COLUMN IF NOT EXISTS request_overcapture VARCHAR(32) DEFAULT NULL, -ADD COLUMN IF NOT EXISTS overcapture_status VARCHAR(32) DEFAULT NULL; \ No newline at end of file diff --git a/migrations/2025-02-06-83746_add_request_overcapture_to_payment_intent/down.sql b/migrations/2025-02-06-83746_add_request_overcapture_to_payment_intent/down.sql deleted file mode 100644 index 8a7552029b6..00000000000 --- a/migrations/2025-02-06-83746_add_request_overcapture_to_payment_intent/down.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE payment_intent DROP COLUMN IF EXISTS request_overcapture; \ No newline at end of file diff --git a/migrations/2025-02-06-83746_add_request_overcapture_to_payment_intent/up.sql b/migrations/2025-02-06-83746_add_request_overcapture_to_payment_intent/up.sql deleted file mode 100644 index 78ff94f8870..00000000000 --- a/migrations/2025-02-06-83746_add_request_overcapture_to_payment_intent/up.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE payment_intent ADD COLUMN IF NOT EXISTS request_overcapture VARCHAR(32) DEFAULT NULL; \ No newline at end of file