UNPKG

echadospalante-core

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

31 lines (24 loc) 525 B
import { Column, CreateDateColumn, Entity, OneToMany, PrimaryGeneratedColumn, UpdateDateColumn, } from "typeorm"; import { MunicipalityData } from "./municipality.data"; @Entity({ name: "department", }) export class DepartmentData { @PrimaryGeneratedColumn() id: number; @Column() name: string; @CreateDateColumn() createdAt: Date; @UpdateDateColumn() updatedAt: Date; @OneToMany(() => MunicipalityData, (municipality) => municipality.department) municipalities: MunicipalityData[]; }