Skip to content

Instantly share code, notes, and snippets.

View cheezytony's full-sized avatar
🎯
Focusing

Antonio Okoro cheezytony

🎯
Focusing
  • CredPal
  • Lagos, Nigeria
  • 13:00 (UTC -12:00)
View GitHub Profile
@cheezytony
cheezytony / zshgit.md
Created May 9, 2022 11:33 — forked from AdamMarsden/zshgit.md
Oh My Zsh - Git Cheat Sheet

#Oh My Zsh - Git Cheat Sheet

ggit

gstgit status

glgit pull

gupgit pull --rebase

@victorcrbt
victorcrbt / Client.ts
Last active September 27, 2024 19:33
TypeORM ManyToMany relation with custom pivot table and column names.
import { Entity, PrimaryGeneratedColumn, Column, ManyToMany, JoinTable } from 'typeorm';
import Company from './Company';
@Entity('clients')
export default class Client {
@PrimaryGeneratedColumn()
id: number;
@Column()