fix: schema ci checks (#18146)

This commit is contained in:
Jason Rasmussen
2025-05-07 17:14:20 -04:00
committed by GitHub
parent bbd8de177b
commit a6e5e4f625
6 changed files with 35 additions and 16 deletions
@@ -1,6 +1,6 @@
import { Column, PrimaryGeneratedColumn, Table } from 'src/sql-tools';
@Table({ name: 'naturalearth_countries' })
@Table({ name: 'naturalearth_countries', primaryConstraintName: 'naturalearth_countries_pkey' })
export class NaturalEarthCountriesTable {
@PrimaryGeneratedColumn({ strategy: 'identity' })
id!: number;