0byt3m1n1
Path:
/
data
/
applications
/
aps
/
owl
/
1.0-0
/
standard
/
htdocs
/
DOCS
/
sql
/
[
Home
]
File: mysql-from-0.90.sql
alter TABLE folders add column linkedto int(4); alter TABLE folders add column rss_feed int(4); alter TABLE prefs add column pdf_watermark_path varchar(255); alter TABLE prefs add column pdf_custom_watermark_filepath varchar(255); alter TABLE prefs add column pdf_watermarks int(4); alter TABLE prefs add column pdf_pdftk_tool_greater_than_1_40 int(4); alter TABLE prefs add column machine_time_zone int(4); alter TABLE prefs add column show_folder_desc_as_popup int(4); alter TABLE prefs add column use_wysiwyg_for_textarea int(4); alter TABLE prefs add column make_file_indexing_user_selectable int(4); alter TABLE prefs add column turn_file_index_off int(4); alter TABLE prefs add column force_ssl int(4); alter table prefs add column leave_old_file_accessible int(4); alter table prefs add column auto_checkout_checking int(4); alter table prefs add column different_filename_update int(4); alter table prefs add column owl_maintenance_mode int(4); alter table prefs add column motd text; alter table prefs add column smtp_ssl int(4); alter table prefs add column smtp_port int(4); alter table prefs add column smtp_max_size int(4); alter table prefs add column pdf_thumb_path varchar(255); alter table owl_log add column filesize bigint(20); alter TABLE users add column pdf_watermarks int(4); alter table users add column user_default_view int(4); alter table users add column user_minor_revision int(4); alter table users add column user_major_revision int(4); alter table users add column user_default_revision int(4); alter table prefs add column default_revision int(4); INSERT INTO mimes VALUES ('docx', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'); INSERT INTO mimes VALUES ('xlsx', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); INSERT INTO mimes VALUES ('pptx', 'application/vnd.openxmlformats-officedocument.presentationml.presentation'); alter table favorites add column fav_label varchar(255); alter table files add column infected int(4) default '0'; alter table files add column expires datetime default NULL; CREATE TABLE other_userprefs ( upref_id int(4) NOT NULL auto_increment, user_id int(4) default NULL, email_sig text, PRIMARY KEY (upref_id) ); CREATE TABLE file_checksum ( file_id int(4) NOT NULL default '0', hash1 text, hash2 text, hash3 text, signature text, PRIMARY KEY (file_id) ); update users set user_minor_revision ='0', user_major_revision = '1', user_default_revision='2';