Port email/send
[platal.git] / upgrade / account / copy_tables.php
CommitLineData
100e66fc
FB
1#!/usr/bin/php5 -q
2<?php
3/***************************************************************************
4 * Copyright (C) 2003-2010 Polytechnique.org *
5 * http://opensource.polytechnique.org/ *
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the Free Software *
19 * Foundation, Inc., *
20 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
21 ***************************************************************************/
22
23require('./connect.db.inc.php');
24
d0293d9b 25function copyTable($source, $target, $convertToInnoDB = true)
100e66fc
FB
26{
27 XDB::execute('CREATE TABLE ' . $target . '
d0293d9b
FB
28 LIKE ' . $source);
29 if ($convertToInnoDB) {
30 XDB::execute('ALTER TABLE ' . $target . '
31 ENGINE = InnoDB');
32 }
100e66fc
FB
33 XDB::execute('INSERT INTO ' . $target . '
34 SELECT *
35 FROM ' . $source);
36}
37
38copyTable('#forums#.list', 'forums');
39copyTable('#forums#.abos', 'forum_subs');
40copyTable('#forums#.innd', 'forum_innd');
41copyTable('#forums#.profils', 'forum_profiles');
42
43copyTable('#logger#.actions', 'log_actions');
44copyTable('#logger#.events', 'log_events');
45copyTable('#logger#.last_sessions', 'log_last_sessions');
46copyTable('#logger#.sessions', 'log_sessions');
47
48copyTable('#paiement#.paiements', 'payments');
49copyTable('#paiement#.codeC', 'payment_codeC');
50copyTable('#paiement#.codeRCB', 'payment_codeRCB');
51copyTable('#paiement#.methodes', 'payment_methods');
52copyTable('#paiement#.transactions', 'payment_transactions');
53
54copyTable('#groupex#.announces', 'group_announces');
55copyTable('#groupex#.announces_photo', 'group_announces_photo');
56copyTable('#groupex#.announces_read', 'group_announces_read');
57copyTable('#groupex#.asso', 'groups');
58copyTable('#groupex#.dom', 'group_dom');
59copyTable('#groupex#.evenements', 'group_events');
60copyTable('#groupex#.evenements_items', 'group_event_items');
61copyTable('#groupex#.evenements_participants', 'group_event_participants');
62copyTable('#groupex#.membres', 'group_members');
63copyTable('#groupex#.membres_sub_requests', 'group_member_sub_requests');
9d5e1087 64copyTable('#x4dat#.groupesx_auth', 'group_auth');
100e66fc 65
06f4daf9
FB
66copyTable('#x4dat#.axletter', 'axletter');
67copyTable('#x4dat#.axletter_ins', 'axletter_ins');
68copyTable('#x4dat#.axletter_rights', 'axletter_rights');
69
70copyTable('#x4dat#.newsletter', 'newsletter');
71copyTable('#x4dat#.newsletter_art', 'newsletter_art');
72copyTable('#x4dat#.newsletter_cat', 'newsletter_cat');
73copyTable('#x4dat#.newsletter_ins', 'newsletter_ins');
74
06f4daf9
FB
75copyTable('#x4dat#.evenements', 'announces');
76copyTable('#x4dat#.evenements_photo', 'announce_photos');
77copyTable('#x4dat#.evenements_vus', 'announce_read');
78
d0293d9b
FB
79copyTable('#x4dat#.gapps_accounts', 'gapps_accounts', false);
80copyTable('#x4dat#.gapps_nicknames', 'gapps_nicknames', false);
06f4daf9
FB
81copyTable('#x4dat#.gapps_queue', 'gapps_queue');
82copyTable('#x4dat#.gapps_reporting', 'gapps_reporting');
83
84copyTable('#x4dat#.contacts', 'contacts');
85copyTable('#x4dat#.coupures', 'downtimes');
86copyTable('#x4dat#.emails_watch', 'email_watch');
48e683dd 87copyTable('#x4dat#.emails_send_save', 'email_send_save');
06f4daf9
FB
88copyTable('#x4dat#.homonymes', 'homonyms');
89copyTable('#x4dat#.ip_watch', 'ip_watch');
90copyTable('#x4dat#.mx_watch', 'mx_watch');
2235cd7f 91copyTable('#x4dat#.ml_moderate', 'email_list_moderate');
06f4daf9
FB
92
93copyTable('#x4dat#.postfix_blacklist', 'postfix_blacklist');
94copyTable('#x4dat#.postfix_mailseen', 'postfix_mailseen');
95copyTable('#x4dat#.postfix_whitelist', 'postfix_whitelist');
96
100e66fc 97copyTable('#x4dat#.photo', 'profile_photos');
5c8a71f2
FB
98copyTable('#x4dat#.binets_def', 'profile_binet_enum');
99copyTable('#x4dat#.binets_ins', 'profile_binets');
100copyTable('#x4dat#.sections', 'profile_section_enum');
101copyTable('#x4dat#.profile_medals', 'profile_medal_enum');
102copyTable('#x4dat#.profile_medals_sub', 'profile_medals');
103copyTable('#x4dat#.competences_def', 'profile_skill_enum');
104copyTable('#x4dat#.competences_ins', 'profile_skills');
105copyTable('#x4dat#.langues_def', 'profile_langskill_enum');
106copyTable('#x4dat#.langues_ins', 'profile_langskills');
100e66fc 107
100e66fc 108copyTable('#x4dat#.register_marketing', 'register_marketing');
06f4daf9
FB
109copyTable('#x4dat#.register_pending', 'register_pending');
110copyTable('#x4dat#.register_subs', 'register_subs');
111copyTable('#x4dat#.register_mstats', 'register_mstats');
112
113copyTable('#x4dat#.reminder', 'reminder');
114copyTable('#x4dat#.reminder_type', 'reminder_type');
115
116copyTable('#x4dat#.requests', 'requests');
117copyTable('#x4dat#.requests_answers', 'requests_answers');
118copyTable('#x4dat#.requests_hidden', 'requests_hidden');
119
120copyTable('#x4dat#.search_autocomplete', 'search_autocomplete');
121copyTable('#x4dat#.search_name', 'search_name');
122
123copyTable('#x4dat#.skins', 'skins');
124copyTable('#x4dat#.tips', 'tips');
125
126copyTable('#x4dat#.survey_surveys', 'surveys');
d0293d9b 127copyTable('#x4dat#.survey_answers', 'survey_answers');
06f4daf9
FB
128copyTable('#x4dat#.survey_votes', 'survey_votes');
129
100e66fc 130copyTable('#x4dat#.watch_profile', 'watch_profile');
06f4daf9 131copyTable('#x4dat#.perte_pass', 'account_lost_passwords');
100e66fc 132
d0293d9b 133copyTable('#x4dat#.emails', 'emails');
06f4daf9
FB
134copyTable('#x4dat#.aliases', 'aliases');
135copyTable('#x4dat#.virtual', 'virtual');
136copyTable('#x4dat#.virtual_domains', 'virtual_domains');
137copyTable('#x4dat#.virtual_redirect', 'virtual_redirect');
138
139copyTable('#x4dat#.watch_nonins', 'watch_nonins');
140copyTable('#x4dat#.watch_promo', 'watch_promo');
d0293d9b
FB
141
142copyTable('#x4dat#.openid_trusted', 'openid_trusted', false);
06f4daf9 143
100e66fc
FB
144// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
145?>