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