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 employee table #4

Closed westgards closed 1 year ago

westgards commented 1 year ago
Screen Shot 2023-01-22 at 3 36 11 PM

employee: id: INT PRIMARY KEY first_name: VARCHAR(30) to hold employees first name last_name: VARCHAR(30) to hold employee last name role_id: INT to hold reference to employee role manager_id: INT to hold reference to another employee that is the manager of the current employee(NULL if the employee has no manager)

westgards commented 1 year ago

PR: #18