maxbbender/Viral-Education

Things to do when we push to production

Opened this issue · 2 comments

Report table needs Auto Increment on ID columns

Assignment texts due date column update

CREATE TABLE IF NOT EXISTS assigned_texts (
id int(11) NOT NULL AUTO_INCREMENT,
text_id int(11) NOT NULL,
class_id int(11) NOT NULL,
creator_id int(11) NOT NULL,
date_created int(11) NOT NULL,
assignment_due datetime NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=181 ;

add done (Boolean) column to reports