You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
ALTER TABLE mailbox ADD COLUMN password_expiry TIMESTAMP DEFAULT now() not null;
|
|
|
|
UPDATE mailbox set password_expiry = now() + interval 90 day;
|
|
|
|
ALTER TABLE domain ADD COLUMN password_expiry int DEFAULT 0;
|