mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
10 lines
231 B
MySQL
10 lines
231 B
MySQL
|
|
/*
|
||
|
|
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);
|