Chamilo is a learning management system focused on ease of use and accessibility
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.
chamilo-lms/public/main/timeline/insert.sql

18 lines
550 B

-- Insert this in your Chamilo 1.9 Database
CREATE TABLE c_timeline (
id INTEGER NOT NULL AUTO_INCREMENT,
c_id INTEGER NOT NULL,
headline VARCHAR(255) NOT NULL,
type VARCHAR(255) NOT NULL,
start_date VARCHAR(255) NOT NULL,
end_date VARCHAR(255) NOT NULL,
text VARCHAR(255) NOT NULL,
media VARCHAR(255) NOT NULL,
media_credit VARCHAR(255) NOT NULL,
media_caption VARCHAR(255) NOT NULL,
title_slide VARCHAR(255) NOT NULL,
parent_id INTEGER DEFAULT 0 NOT NULL,
status INTEGER NOT NULL,
PRIMARY KEY (id, c_id)
);