You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
outcomes-api/outcomes_tracker.sql

12 lines
272 B

CREATE TABLE instances (
id integer,
instance_id integer,
course character varying(64),
graduation_date character varying(128),
total_students integer,
dropped integer,
graduates integer,
seekers integer,
ninety_day_outcomes integer
);