Skip to content

Commit 85c294a

Browse files
wesfloydclaude
andauthored
(claude) Remove Testerson1 test table (#63)
Co-authored-by: Claude <[email protected]>
1 parent 8abea4f commit 85c294a

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
Warnings:
3+
4+
- You are about to drop the `testerson1` table. If the table is not empty, all the data it contains will be lost.
5+
6+
*/
7+
-- DropTable
8+
DROP TABLE "public"."testerson1";

prisma/schema.prisma

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -204,19 +204,6 @@ model UserWatchlist {
204204
@@map("user_watchlist")
205205
}
206206

207-
model Testerson1 {
208-
id String @id @default(cuid())
209-
name String
210-
description String?
211-
isActive Boolean @default(true) @map("is_active")
212-
count Int @default(0)
213-
createdAt DateTime @default(now()) @map("created_at") @db.Timestamp(6)
214-
updatedAt DateTime @updatedAt @map("updated_at") @db.Timestamp(6)
215-
216-
@@index([name], map: "idx_testerson1_name")
217-
@@index([isActive], map: "idx_testerson1_is_active")
218-
@@map("testerson1")
219-
}
220207

221208
enum Category {
222209
ELECTIONS @map("elections")

0 commit comments

Comments
 (0)