style: run eslint and prettier
All checks were successful
TrafficCue Server CI / check (push) Successful in 23s

This commit is contained in:
2025-08-30 10:31:03 +02:00
parent 3b876bbc80
commit fae7308af8
10 changed files with 185 additions and 134 deletions

View File

@ -1,4 +1,10 @@
import { BaseEntity, Column, Entity, ManyToOne, OneToMany, PrimaryGeneratedColumn } from "typeorm";
import {
BaseEntity,
Column,
Entity,
OneToMany,
PrimaryGeneratedColumn,
} from "typeorm";
import { type Review } from "./Review";
import { type Saved } from "./Saved";
@ -17,12 +23,12 @@ export class User extends BaseEntity {
saved: Saved[];
@Column({
default: () => "NOW()"
default: () => "NOW()",
})
updated_at: Date;
@Column({
default: () => "NOW()"
default: () => "NOW()",
})
created_at: Date;
}
}