Allow users to give away local parts to other users.
[odin-cgi] / sql / update-mail-v2.sql
CommitLineData
c68a5549
MW
1/* -*-sql-*-
2 *
3 * Plain old SQL for setting up the tables for Odin mail redirection.
4 */
5
6begin;
7alter table odin_mailredir add column creator varchar(64);
8update odin_mailredir set creator = owner where creator is null;
9alter table odin_mailredir alter column creator set not null;
10commit;