migration.sql 283 B

123456789
  1. /*
  2. Warnings:
  3. - Added the required column `updated_at` to the `orders` table without a default value. This is not possible if the table is not empty.
  4. */
  5. -- AlterTable
  6. ALTER TABLE "orders" ADD COLUMN "paid_at" TIMESTAMP(3),
  7. ADD COLUMN "updated_at" TIMESTAMP(3) NOT NULL;