13 lines
489 B
SQL
Executable File
13 lines
489 B
SQL
Executable File
-- Set Admin password to 'x'
|
|
UPDATE res_users SET password_crypt = '$pbkdf2-sha512$25000$.r93rhUipFQKIYSQci6FcA$hesuvDYTEwTkjUYm/LSt6CH0B/oEMN3JUkpbL1K9gU3vnM3EEdojChU4cjSs21nCIjx88aoVJZ12PBahjM/0Yw' where id = 1;
|
|
|
|
-- Disable schedulers
|
|
UPDATE ir_cron SET active = FALSE where id > 4;
|
|
|
|
-- Corrupt E-Mail addresses
|
|
UPDATE res_partner SET email = replace(email, '@', '#');
|
|
|
|
-- Deactivate all mail servers
|
|
UPDATE ir_mail_server SET active = FALSE;
|
|
UPDATE fetchmail_server SET active = FALSE;
|