-
-
Save imflamboyant/0a3e87560d2d162001f22e740420f5f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm'; | |
| @Entity() | |
| export class Song { | |
| @PrimaryGeneratedColumn() | |
| id: number; | |
| @Column() | |
| name: string; | |
| @Column() | |
| artist: string; | |
| @Column() | |
| duration: number; | |
| @Column() | |
| genre: string; | |
| @Column() | |
| album: string; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment