Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/richistron/movies
- Owner: richistron
- Created: 2021-10-09T19:41:37.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-08T23:17:47.000Z (over 1 year ago)
- Last Synced: 2024-04-15T03:20:06.803Z (7 months ago)
- Topics: api, rails
- Language: Ruby
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
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: numbertitle: string
description: text
director_id: number
---
Director
---
id: numbername: string
---
Actor
---
id: numbername: string
---
Cast
---
id: numbermovie_id: number
actor_id: number