Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ponder/dataModels.ts>people

Simple ORM for PostGRES
Go to Latest
class people
extends Model
import { people } from "https://deno.land/x/ponder@v0.0.4.0/dataModels.ts";

Properties

tableName: string

Static Properties

_id: { data_type: string; is_nullable: string; }
birth_year: { data_type: string; is_nullable: string; }
eye_color: { data_type: string; is_nullable: string; }
gender: { data_type: string; is_nullable: string; }
hair_color: { data_type: string; is_nullable: string; }
height: { data_type: string; is_nullable: string; }
homeworld_id: { data_type: string; is_nullable: string; }
mass: { data_type: string; is_nullable: string; }
name: { data_type: string; is_nullable: string; }
skin_color: { data_type: string; is_nullable: string; }
species_id: { data_type: string; is_nullable: string; }
interface people
import { type people } from "https://deno.land/x/ponder@v0.0.4.0/dataModels.ts";

Properties

height: number
hair_color: string
birth_year: string
homeworld_id: number
species_id: number
name: string
gender: string
_id: number
skin_color: string
mass: string
eye_color: string