Back
/*
Table: employees

Columns:
    emp_no int  
    CashierPassword varchar
    AdminPassword varchar
    FirstName varchar
    LastName varchar
    JobTitle varchar
    EmpActive int
    frontendsecurity int
    backendsecurity int
    birthdate datetime

Depends on:
    none

Use:
Table of cashiers. emp_no identifies
a cashier uniquely. CashierPassword and
AdminPassword are numeric passcodes used
pretty interchangably (should probably match).
EmpActive toggles whether an account can
actually log in. frontendsecurity is used
to restrict certain actions at the register
based on security level.
*/
Back