diff --git a/services/workflows-service/prisma/data-migrations b/services/workflows-service/prisma/data-migrations index 79ee883a56..ba511b855d 160000 --- a/services/workflows-service/prisma/data-migrations +++ b/services/workflows-service/prisma/data-migrations @@ -1 +1 @@ -Subproject commit 79ee883a5606b2dc562ac8530bb493e2e23faadd +Subproject commit ba511b855dd18506ef8f042dabc114907f9c531d diff --git a/services/workflows-service/prisma/migrations/20241203215328_dba_column_in_business_table/migration.sql b/services/workflows-service/prisma/migrations/20241203215328_dba_column_in_business_table/migration.sql new file mode 100644 index 0000000000..ddc8d60ad9 --- /dev/null +++ b/services/workflows-service/prisma/migrations/20241203215328_dba_column_in_business_table/migration.sql @@ -0,0 +1,2 @@ +-- AlterTable +ALTER TABLE "Business" ADD COLUMN "dba" TEXT; diff --git a/services/workflows-service/prisma/schema.prisma b/services/workflows-service/prisma/schema.prisma index 66bfad1b06..826184334f 100644 --- a/services/workflows-service/prisma/schema.prisma +++ b/services/workflows-service/prisma/schema.prisma @@ -124,6 +124,7 @@ model Business { companyName String // Official registered name of the business entity registrationNumber String? // Unique registration number assigned by the relevant authorities legalForm String? // Legal structure of the business entity, e.g., LLC, corporation, partnership + dba String? // Doing Business As (DBA) name of the business entity country String? countryOfIncorporation String? // Country where the business entity is incorporated dateOfIncorporation DateTime? // Date when the business entity was incorporated