https://github.com/anthgrim/sql-scripts
SQL Scripts
https://github.com/anthgrim/sql-scripts
Last synced: 7 months ago
JSON representation
SQL Scripts
- Host: GitHub
- URL: https://github.com/anthgrim/sql-scripts
- Owner: anthgrim
- Created: 2022-12-01T04:13:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-01T04:32:14.000Z (about 3 years ago)
- Last Synced: 2025-05-19T19:53:55.306Z (8 months ago)
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MySQL - Database Diagram Scripts
## Description
Basic database modeling with MySql Diagrams and sql scripts
## Tables
### user
- id Int (pk)
- username varchar(16)
- email varchar(255)
- password varchar(32)
### product
- id Int (pk)
- name varchar(50)
- brandId Int (fk)
- createdBy Int (fk)
### brand
- id Int (pk)
- name varchar(45)
### order
- id Int (pk)
- userId Int (fk)
### order_detail
- id Int (pk)
- order_id (fk)
- product_id (fk)
## Relations
### user 1 <--> n product
### brand 1 <--> n product
### order n <--> n product
## Diagram
