Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 347 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 347 Bytes

Assignment Database Design

User

  • id (primary key)
  • username (string, 20)
  • password (string - hashed, bcrypt)
  • bio (string, 150)

Tweet

  • id (primary key)
  • user_id (FK user.id)
  • tweet
  • published_at (datetime, default=utcnow)

Following (association table)

  • id (primary key)
  • user_id (FK user.id)
  • following_user_id (FK user.id)