westgards / employee_tracker

A command-line application from scratch to manage a company's employee database, using Node.js, Inquirer, and MySQL.
MIT License
0 stars 0 forks source link

Schema: create role table #3

Closed westgards closed 1 year ago

westgards commented 1 year ago
Screen Shot 2023-01-22 at 3 36 11 PM
role
    id: INT PRIMARY KEY
    title: VARCHAR(30) to hold role title
    salary: DECIMAL to hold role salary
    department_id: INT to hold reference to department role 
                                      belongs to
westgards commented 1 year ago

PR: #18