mirror of
https://github.com/SrIzan10/nextbooru.git
synced 2026-06-06 00:57:02 +00:00
10 lines
228 B
SQL
10 lines
228 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `downvotes` on the `Comment` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "Comment" DROP COLUMN "downvotes",
|
|
ADD COLUMN "votedBy" TEXT[];
|