6 changed files with 21 additions and 0 deletions
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
-- Reseller Providers were being created with a NULL value in the `Name` column. |
||||
-- This script will populate them with the value from `BusinessName` which was already required. |
||||
UPDATE `Provider` |
||||
SET `Name` = `BusinessName` |
||||
WHERE `Name` IS NULL; |
||||
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
-- Reseller Providers were being created with a NULL value in the "Name" column. |
||||
-- This script will populate them with the value from "BusinessName" which was already required. |
||||
UPDATE "Provider" |
||||
SET "Name" = "BusinessName" |
||||
WHERE "Name" IS NULL; |
||||
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
-- Reseller Providers were being created with a NULL value in the "Name" column. |
||||
-- This script will populate them with the value from "BusinessName" which was already required. |
||||
UPDATE "Provider" |
||||
SET "Name" = "BusinessName" |
||||
WHERE "Name" IS NULL; |
||||
Loading…
Reference in new issue