/*
  Warnings:

  - Made the column `updated_at` on table `billing_methods` required. This step will fail if there are existing NULL values in that column.
  - Made the column `updated_at` on table `payments` required. This step will fail if there are existing NULL values in that column.
  - Made the column `updated_at` on table `subscription_plans` required. This step will fail if there are existing NULL values in that column.
  - Made the column `updated_at` on table `subscriptions` required. This step will fail if there are existing NULL values in that column.

*/
-- AlterTable
ALTER TABLE "billing_methods" ALTER COLUMN "updated_at" SET NOT NULL;

-- AlterTable
ALTER TABLE "payments" ALTER COLUMN "updated_at" SET NOT NULL;

-- AlterTable
ALTER TABLE "subscription_plans" ALTER COLUMN "updated_at" SET NOT NULL;

-- AlterTable
ALTER TABLE "subscriptions" ALTER COLUMN "updated_at" SET NOT NULL;
