egroupware/doc/update_09072000_to_09262000.pgsql
2000-09-27 01:04:32 +00:00

38 lines
2.6 KiB
PL/PgSQL

alter table accounts rename con to account_id;
alter table accounts rename loginid to account_lid;
alter table accounts rename passwd to account_pwd;
alter table accounts rename firstname to account_firstname;
alter table accounts rename lastname to account_lastname;
alter table accounts rename permissions to account_permissions;
alter table accounts rename groups to account_groups;
alter table accounts rename lastlogin to account_lastlogin;
alter table accounts rename lastloginfrom to account_lastloginfrom;
alter table accounts rename lastpasswd_change to account_lastpwd_change;
alter table accounts rename status to account_status;
alter table applications add app_order int;
alter table applications add app_tables varchar(255);
alter table preferences rename owner to preference_owner;
alter table preferences rename name to preference_name;
alter table preferences rename value to preference_value;
alter table preferences add preference_appname varchar(50) default '';
alter table sessions rename sessionid to session_id;
alter table sessions rename loginid session_lid;
alter table sessions rename passwd session_pwd;
alter table sessions rename ip session_ip;
alter table sessions rename logintime session_logintime;
alter table sessions rename dla session_dla;
update applications set app_order=1,app_tables=NULL where app_name='admin';
update applications set app_order=2,app_tables=NULL where app_name='tts';
update applications set app_order=3,app_tables=NULL where app_name='inv';
update applications set app_order=4,app_tables=NULL where app_name='chat';
update applications set app_order=5,app_tables='news_sites,news_headlines,users_headlines' where app_name='headlines';
update applications set app_order=6,app_tables=NULL where app_name='filemanager';
update applications set app_order=7,app_tables='addressbook' where app_name='addressbook';
update applications set app_order=8,app_tables='todo' where app_name='todo';
update applications set app_order=9,app_tables='webcal_entry,webcal_entry_users,webcal_entry_groups,webcal_repeats' where app_name='calendar';
update applications set app_order=10,app_tables=NULL where app_name='email';
update applications set app_order=11,app_tables='newsgroups,users_newsgroups' where app_name='nntp';
update applications set app_order=0,app_tables=NULL where app_name='cron_apps';