SQLite script updates for new SMTP feature.

This commit is contained in:
Boris Gulay
2019-01-10 23:55:33 +03:00
parent 34fd9ca6f6
commit f164ccfd05
2 changed files with 35 additions and 10 deletions

25
SQL/sqlite/2018121800.sql Normal file
View File

@@ -0,0 +1,25 @@
ALTER TABLE
ident_switch
RENAME COLUMN
host
TO
imap_host;
ALTER TABLE
ident_switch
RENAME COLUMN
port
TO
imap_port;
ALTER TABLE
ident_switch
ADD COLUMN
smtp_host
varchar(64);
ALTER TABLE
ident_switch
ADD COLUMN
smtp_port
int;