diff options
Diffstat (limited to 'packages/backend/src/models/ChannelFollowing.ts')
| -rw-r--r-- | packages/backend/src/models/ChannelFollowing.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/backend/src/models/ChannelFollowing.ts b/packages/backend/src/models/ChannelFollowing.ts index c62a95332a..4dd391a082 100644 --- a/packages/backend/src/models/ChannelFollowing.ts +++ b/packages/backend/src/models/ChannelFollowing.ts @@ -15,12 +15,6 @@ export class MiChannelFollowing { public id: string; @Index() - @Column('timestamp with time zone', { - comment: 'The created date of the ChannelFollowing.', - }) - public createdAt: Date; - - @Index() @Column({ ...id(), comment: 'The followee channel ID.', |