Coder Social home page Coder Social logo

modeling's Introduction

Node DB 4 Guided Project

Guided project for Node DB 4 Module.

Prerequisites

Project Setup

  • import and clone this repository.
  • CD into the folder where you cloned your version.
  • type npm i to download dependencies.
  • type npm run server to start the API.

Please follow along as the instructor uses Knex migrations and seeding to create a multi-table database schema.

Modeling

Users had a map with markers. Kept record of user information.

  • user accounts
    • id, pk, guid, required
    • avatar, optional, image
    • name, search term, required, at least 2 characters
    • username, unique
  • messages
    • long and lat for location.
    • date
    • text
    • pictures

Workflow

  • identify the entities (nouns) --> tables
  • identify the properties --> columns
  • identify relationships --> foreign keys

Relationships

  • one to one
  • one to many
  • many to many

Mantras

  • every table must have a primary key.
  • work on two or three entities.
  • one to many relationships require a foreign key
  • the foreign key goes on the many side.
  • on a many to many, use a third table.
  • the third table could have extra information.

School Model

  • keep a record of tracks (ds, ios, android, web, db)
  • keep a record of units. A track is made up of multiple units.
  • A unit is made up of sprints.
  • the school has students.
  • the students are grouped into cohorts.
  • a student could be part of more than one cohort.

modeling's People

Contributors

luishrd avatar kphillips001 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.