summaryrefslogtreecommitdiff
path: root/packages/backend/src/models/PollVote.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/backend/src/models/PollVote.ts')
-rw-r--r--packages/backend/src/models/PollVote.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/backend/src/models/PollVote.ts b/packages/backend/src/models/PollVote.ts
index 37cd55fc18..751be8a32b 100644
--- a/packages/backend/src/models/PollVote.ts
+++ b/packages/backend/src/models/PollVote.ts
@@ -15,12 +15,6 @@ export class MiPollVote {
public id: string;
@Index()
- @Column('timestamp with time zone', {
- comment: 'The created date of the PollVote.',
- })
- public createdAt: Date;
-
- @Index()
@Column(id())
public userId: MiUser['id'];