mirror of
https://github.com/woodchen-ink/Q58Connect.git
synced 2025-07-18 14:01:55 +08:00
14 lines
480 B
SQL
14 lines
480 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `updatedAt` to the `access_tokens` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "access_tokens" ADD COLUMN "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
ADD COLUMN "error" TEXT,
|
|
ADD COLUMN "updatedAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "clients" ADD COLUMN "enabled" BOOLEAN NOT NULL DEFAULT true;
|