forked from opendcim/openDCIM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb-1.0-to-1.1.sql
More file actions
31 lines (21 loc) · 833 Bytes
/
db-1.0-to-1.1.sql
File metadata and controls
31 lines (21 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--
-- Changes to openDCIM database for migrating from 1.0 to 1.1
--
--
-- Dell changed their web page and broke the warranty information retrieval script, so the
-- use of this parameter has been deprecated.
--
delete from fac_Config where Parameter='DELL_ID';
--
-- You can't really make dynamic CSS easily, so users can stick with the openDCIM logo
-- for the web page, but reports can still have a custom logo.
delete from fac_Config where Parameter='CSSLogoFile';
--
-- Since fpdf was upgraded to a newer version, it supports png.
--
update fac_Config set DefaultVal="logo.png" where Parameter="PDFLogoFile";
--
-- Added SMTPUser and SMTPPassword so that authentication can be used for sending email
--
insert into fac_Config values ('SMTPUser','','Username','string',''),
('SMTPPassword','','Password','string','');