michaelctorres / clients-oriented-ftp

Automatically exported from code.google.com/p/clients-oriented-ftp
0 stars 0 forks source link

Upgrade SQL script from 335 to 412 #353

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hello, sorry I don't know where to put this but here. SQL to run on 335 DB to 
upgrade it to 412

-- Projectsend 335 to 412
ALTER TABLE tbl_notifications ADD sent_status int(2) NOT NULL;
ALTER TABLE tbl_notifications ADD times_failed int(11) NOT NULL;

INSERT INTO `tbl_options` (`name`, `value`) VALUES
('thumbnails_use_absolute', '0'),
('mail_copy_user_upload', ''),
('mail_copy_client_upload', ''),
('mail_copy_main_user', ''),
('mail_copy_addresses', ''),
('version_last_check', 'select(Date())'),
('version_new_found', '0'),
('version_new_number', ''),
('version_new_url', ''),
('version_new_chlog', ''),
('version_new_security', ''),
('version_new_features', ''),
('version_new_important', ''),
('clients_auto_approve', '0'),
('clients_auto_group', '0'),
('clients_can_upload', '1');

Original issue reported on code.google.com by bflaha...@gmail.com on 26 Jul 2013 at 1:38