Spaces:
Running
Running
Bibhu Mishra
Add GitHub Actions CI/CD, HF Space deployment, market hours guard, and static serving
abc493d | import { Column, CreateDateColumn, Entity, JoinColumn, ManyToOne, PrimaryGeneratedColumn } from 'typeorm'; | |
| import { User } from './user.entity'; | |
| ('notifications') | |
| export class Notification { | |
| () id: number; | |
| ({ nullable: true }) user_id: number; | |
| () type: string; | |
| () title: string; | |
| ('text') message: string; | |
| ({ default: false }) is_read: boolean; | |
| () created_at: Date; | |
| (() => User, (u) => u.notifications, { nullable: true }) | |
| ({ name: 'user_id' }) | |
| user: User; | |
| } | |