Skip to content

Instantly share code, notes, and snippets.

@chnirt
Last active June 18, 2019 03:07
Show Gist options
  • Save chnirt/30c0af6a5958a35eafebacf557935e90 to your computer and use it in GitHub Desktop.
Save chnirt/30c0af6a5958a35eafebacf557935e90 to your computer and use it in GitHub Desktop.
NestJs
import { Entity, Column, ObjectIdColumn } from 'typeorm';
@Entity()
export class User {
@ObjectIdColumn()
_id: string;
@Column()
username: string;
@Column()
password: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment