Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/richistron/movies

This is a simple rails api, the goal of this project is to learn a little bit about how rails works
https://github.com/richistron/movies

api rails

Last synced: 8 days ago
JSON representation

This is a simple rails api, the goal of this project is to learn a little bit about how rails works

Awesome Lists containing this project

README

        

# Movies

This is a simple rails api, the goal of this project is to learn a little bit
about how rails works and how to do:

* Migrations
* Models
* Controllers
* Scopes
* Unit tests
* And more

# Schema

---
Movie
---
id: number

title: string

description: text

director_id: number

---
Director
---
id: number

name: string

---
Actor
---
id: number

name: string

---
Cast
---
id: number

movie_id: number

actor_id: number