mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-19 17:27:26 +02:00
🔥 Remove closed column (#1656)
This commit is contained in:
parent
47d96f7bee
commit
53a48a0511
5 changed files with 9 additions and 9 deletions
|
@ -0,0 +1,8 @@
|
|||
/*
|
||||
Warnings:
|
||||
|
||||
- You are about to drop the column `closed` on the `polls` table. All the data in the column will be lost.
|
||||
|
||||
*/
|
||||
-- AlterTable
|
||||
ALTER TABLE "polls" DROP COLUMN "closed";
|
|
@ -148,7 +148,6 @@ model Poll {
|
|||
userId String? @map("user_id")
|
||||
guestId String? @map("guest_id")
|
||||
timeZone String? @map("time_zone")
|
||||
closed Boolean @default(false) // @deprecated
|
||||
status PollStatus @default(live)
|
||||
deleted Boolean @default(false)
|
||||
deletedAt DateTime? @map("deleted_at")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue