Spaces:
Sleeping
Sleeping
| import { | |
| Entity, | |
| Column, | |
| PrimaryGeneratedColumn, | |
| CreateDateColumn, | |
| UpdateDateColumn, | |
| } from 'typeorm'; | |
| ('system_configs') | |
| export class SystemConfig { | |
| () | |
| id: number; | |
| ({ type: 'varchar', length: 100, unique: true }) | |
| key: string; | |
| ({ type: 'simple-json', nullable: true }) | |
| value: any; | |
| ({ type: 'varchar', length: 255, nullable: true }) | |
| description: string; | |
| ({ name: 'created_at' }) | |
| createdAt: Date; | |
| ({ name: 'updated_at' }) | |
| updatedAt: Date; | |
| } | |