mirror of
https://github.com/ZeroCatDev/ClassworksKV.git
synced 2025-10-22 02:03:11 +00:00
10 lines
237 B
SQL
10 lines
237 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `refreshToken` on the `Account` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE `Account` DROP COLUMN `refreshToken`,
|
|
MODIFY `accessToken` TEXT NULL;
|