mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
9 lines
231 B
SQL
9 lines
231 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `rev_id` on the `website` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "website" DROP COLUMN "rev_id",
|
|
ADD COLUMN "reset_at" TIMESTAMPTZ(6);
|