AppStateESS/InternshipInventory

View on GitHub
boost/updates/update_00.01.22.sql

Summary

Maintainability
Test Coverage
CREATE TABLE intern_courses(
      id INT NOT NULL,
      subject_id integer REFERENCES intern_subject(id),
      course_num INT NOT NULL,
      primary key (id)
);

CREATE SEQUENCE intern_courses_seq;