Initial commit: EKAI v2 - Portal de Notícias IA (React + NestJS)

This commit is contained in:
bigtux
2026-02-10 15:46:21 -03:00
commit b590bedd4c
59 changed files with 11706 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import { Entity, PrimaryGeneratedColumn, Column, CreateDateColumn } from 'typeorm';
@Entity('hypes')
export class Hype {
@PrimaryGeneratedColumn()
id: number;
@Column()
nome: string;
@Column({ type: 'int' })
percentual: number;
@Column({ nullable: true })
icone: string;
@Column({ type: 'int', default: 0 })
ordem: number;
@Column({ default: true })
ativo: boolean;
@CreateDateColumn()
created_at: Date;
}