https://github.com/landonepps/tasks-on-rails
https://github.com/landonepps/tasks-on-rails
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/landonepps/tasks-on-rails
- Owner: landonepps
- License: mit
- Created: 2019-04-15T02:22:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-15T06:13:15.000Z (about 7 years ago)
- Last Synced: 2025-02-09T19:50:19.850Z (over 1 year ago)
- Language: Ruby
- Size: 126 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tasks on Rails

## DB スキーマ
users
| カラム名 | データ型 |
| --------------- | -------- |
| id | int |
| username | varchar |
| password_digest | varchar |
tasks
| カラム名 | データ型 |
| ----------- | ---------- |
| id | int |
| user_id | int |
| name | varchar |
| description | text |
| deadline | date |
| priority | int (enum) |
| status | int (enum) |
tags
| カラム名 | データ型 |
| -------- | -------- |
| id | int |
| name | varchar |
tags_users
| カラム名 | データ型 |
| -------- | -------- |
| user_id | int |
| tag_id | int |
tags_tasks
| カラム名 | データ型 |
| -------- | -------- |
| task_id | int |
| tag_id | int |