1 CREATE TABLE IF NOT EXISTS `profile_networking_enum`
(
2 `network_type` tinyint unsigned
NOT NULL,
3 `
name`
varchar(30) NOT NULL,
4 `icon`
varchar(50) NOT NULL COMMENT 'icon filename',
5 `
filter`
enum('email','web','number','none') NOT NULL DEFAULT 'none' COMMENT 'filter type for addresses',
6 `
link`
varchar(255) NOT NULL COMMENT 'string used to forge an URL linking to the the profile page',
7 PRIMARY KEY (`network_type`
)
8 ) ENGINE
=InnoDB
, CHARSET
=utf8
, COMMENT='types of networking addresses';
10 CREATE TABLE IF NOT EXISTS `profile_networking`
(
11 `uid`
int NOT NULL COMMENT 'user id',
12 `nwid` tinyint unsigned
NOT NULL COMMENT 'number of the address for the user',
13 `network_type` tinyint unsigned
NOT NULL,
14 `address`
varchar(255) NOT NULL,
15 `pub`
enum('private','public') NOT NULL DEFAULT 'private',
16 PRIMARY KEY (`uid`
, `nwid`
),
18 ) ENGINE
=InnoDB
, CHARSET
=utf8
, COMMENT='networking addresses';
20 -- Insert a first address type for old URLs
21 INSERT INTO `profile_networking_enum`
(`network_type`
, `
name`
, `icon`
, `
filter`
)
22 VALUES (0, 'Page web', 'web.gif', 'web');
24 INSERT INTO `profile_networking`
(`uid`
, `nwid`
, `network_type`
, `address`
, `pub`
)
25 SELECT `user_id`
, 0, 0, `profile_web`
, `profile_web_pub`
26 FROM #x4dat#.`auth_user_quick`
27 WHERE `profile_web`
<> "";
29 -- Modify watch_profile to update 'field' from web to networking
30 ALTER TABLE `watch_profile`
31 MODIFY `field`
enum('nom', 'freetext', 'mobile', 'nationalite', 'nick',
32 'web', 'networking', 'appli1', 'appli2', 'addresses',
33 'section', 'binets', 'medals', 'cv', 'jobs', 'photo');
35 UPDATE `watch_profile`
SET `field`
= 'networking' WHERE `field`
= 'web';
37 ALTER TABLE `watch_profile`
38 MODIFY `field`
enum('nom', 'freetext', 'mobile', 'nationalite', 'nick',
39 'networking', 'appli1', 'appli2', 'addresses',
40 'section', 'binets', 'medals', 'cv', 'jobs', 'photo');
42 # vim
:set syntax
=mysql
: