PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Wyliczenie Postgres w TypeORM

Enum jest teraz obsługiwane w TypeOrm dla postgresu

Według dokumentacji

export enum UserRole {
    ADMIN = "admin",
    EDITOR = "editor",
    GHOST = "ghost"
}

@Entity()
export class User {

    @PrimaryGeneratedColumn()
    id: number;

    @Column({
        type: "enum",
        enum: UserRole,
        default: UserRole.GHOST
    })
    role: UserRole;

}

export type UserRoleType = "admin" | "editor" | "ghost",

@Entity()
export class User {

    @PrimaryGeneratedColumn()
    id: number;

    @Column({
        type: "enum",
        enum: ["admin", "editor", "ghost"],
        default: "ghost"
    })
    role: UserRoleType;
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Błąd Pgsql:może być konieczne dodanie rzutowania typu jawnego

  2. Zdalne połączenie z serwerem Postgresql

  3. Odwołanie do wybranego aliasu kolumny agregowanej w klauzuli have w Postgres

  4. Podziel wartość kolumny na dwie kolumny w SELECT?

  5. Przypisanie wartości zmiennej za pomocą klauzuli RETURNING