diff --git a/prisma/migrations/20250107023936_add_code_field/migration.sql b/prisma/migrations/20250107023936_add_code_field/migration.sql new file mode 100644 index 0000000..e64b47f --- /dev/null +++ b/prisma/migrations/20250107023936_add_code_field/migration.sql @@ -0,0 +1,8 @@ +/* + Warnings: + + - Added the required column `code` to the `CreditNote` table without a default value. This is not possible if the table is not empty. + +*/ +-- AlterTable +ALTER TABLE "CreditNote" ADD COLUMN "code" TEXT NOT NULL;