mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 06:24:15 +02:00
11 lines
308 B
SQL
11 lines
308 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `time` on the `VerifyUnblock` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Verify" DROP COLUMN "time",
|
|
ADD COLUMN "finishTime" TIMESTAMP(3),
|
|
ADD COLUMN "startTime" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP;
|