mirror of
https://github.com/immich-app/immich.git
synced 2025-01-24 20:52:44 +01:00
4f89195702
Co-authored-by: Zack Pollard <zackpollard@ymail.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
|
|
|
|
@Entity('naturalearth_countries', { synchronize: false })
|
|
export class NaturalEarthCountriesEntity {
|
|
@PrimaryGeneratedColumn()
|
|
id!: number;
|
|
|
|
@Column({ type: 'varchar', length: 50 })
|
|
admin!: string;
|
|
|
|
@Column({ type: 'varchar', length: 3 })
|
|
admin_a3!: string;
|
|
|
|
@Column({ type: 'varchar', length: 50 })
|
|
type!: string;
|
|
|
|
@Column({ type: 'polygon' })
|
|
coordinates!: string;
|
|
}
|