9 lines
257 B
SQL
9 lines
257 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `failureCount` to the `subscriptions` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "subscriptions" ADD COLUMN "failureCount" INTEGER NOT NULL;
|